From e77a0ac55f772695996f145d103bd8ffd81487fd Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 28 Nov 2007 07:10:48 +0000 Subject: [PATCH] fix a mistake in the recent commit git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7729 d7cf8633-e32d-0410-b094-e92efae38249 --- image.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/image.c b/image.c index 0745ea60..71cacb6e 100644 --- a/image.c +++ b/image.c @@ -727,10 +727,10 @@ imageformat_t imageformats_nopath[] = // so i just use additional folder to store this textures imageformat_t imageformats_dq[] = { - {"%s.tga", LoadTGA}, - {"%s.jpg", JPEG_LoadImage}, - {"texturemaps/%s.tga", LoadTGA}, - {"texturemaps/%s.jpg", JPEG_LoadImage}, + {"%s.tga", LoadTGA_BGRA}, + {"%s.jpg", JPEG_LoadImage_BGRA}, + {"texturemaps/%s.tga", LoadTGA_BGRA}, + {"texturemaps/%s.jpg", JPEG_LoadImage_BGRA}, {NULL, NULL} }; -- 2.39.2