From: lordhavoc Date: Wed, 30 May 2001 08:02:44 +0000 (+0000) Subject: fix for mistake in pcx loader (had two pointers swapped) X-Git-Tag: RELEASE_0_2_0_RC1~806 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=bd93e8228dbdc89d934e4db36681273172609c22;p=xonotic%2Fdarkplaces.git fix for mistake in pcx loader (had two pointers swapped) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@223 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/image.c b/image.c index 068d01bd..72492f87 100644 --- a/image.c +++ b/image.c @@ -156,8 +156,8 @@ byte* LoadPCX (byte *f, int matchwidth, int matchheight) } palette = fin; - a = pbuf; - b = image_rgba; + a = image_rgba; + b = pbuf; for(x = 0;x < image_width*image_height;x++) {