bobtools patch width/height fix from OSXNetRadiant. Now we seem to be mostly in sync with OSXNetRadiant rev 94.

This commit is contained in:
Rudolf Polzer 2010-11-15 07:21:12 +01:00
parent fa9d3a210a
commit bf2ca2011e

View File

@ -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++)