From: havoc Date: Wed, 15 Jan 2003 13:12:47 +0000 (+0000) Subject: now prints image size (was printing garbage before) X-Git-Tag: RELEASE_0_2_0_RC1~16 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3e22b4aca6aa4ac767e54fc8e4674e1f90e02f59;p=xonotic%2Fdarkplaces.git now prints image size (was printing garbage before) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2692 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/image.c b/image.c index aa7f0ef9..53ddafb1 100644 --- a/image.c +++ b/image.c @@ -617,7 +617,7 @@ qbyte *loadimagepixels (const char *filename, qboolean complain, int matchwidth, return NULL; loaded: Mem_Free(f); - Con_DPrintf("loaded image %s (%dx%d)\n", name); + Con_DPrintf("loaded image %s (%dx%d)\n", name, image_width, image_height); if (image_width == 0 || image_height == 0) { Con_Printf("error loading image %s - it is a %dx%d pixel image!\n", name);