From bd93e8228dbdc89d934e4db36681273172609c22 Mon Sep 17 00:00:00 2001 From: lordhavoc Date: Wed, 30 May 2001 08:02:44 +0000 Subject: [PATCH] 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 --- image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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++) { -- 2.39.2