From bf2ca2011e074cb236802c8767c0d38836ef2a3f Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Mon, 15 Nov 2010 07:21:12 +0100 Subject: [PATCH] bobtools patch width/height fix from OSXNetRadiant. Now we seem to be mostly in sync with OSXNetRadiant rev 94. --- contrib/bobtoolz/DPatch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/bobtoolz/DPatch.cpp b/contrib/bobtoolz/DPatch.cpp index 3bfc6a34..10dbb4bb 100644 --- a/contrib/bobtoolz/DPatch.cpp +++ b/contrib/bobtoolz/DPatch.cpp @@ -318,8 +318,8 @@ DPatch* DPatch::MergePatches(patch_merge_t merge_info, DPatch *p1, DPatch *p2) */ DPatch* newPatch = new DPatch(); //switched.. - newPatch->height = p1->width; - newPatch->width = newHeight; + newPatch->height = newHeight; + newPatch->width = p1->width; newPatch->SetTexture(p1->texture); for(int y = 0; y < p1->height; y++) -- 2.39.2