From 3e22b4aca6aa4ac767e54fc8e4674e1f90e02f59 Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 15 Jan 2003 13:12:47 +0000 Subject: [PATCH] now prints image size (was printing garbage before) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2692 d7cf8633-e32d-0410-b094-e92efae38249 --- image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2