From cd8aa0d9770704a8a25e35d565b310cbca0a0097 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 26 May 2006 03:09:02 +0000 Subject: [PATCH] don't hexdump png images while reading them (why did it do this??) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6393 d7cf8633-e32d-0410-b094-e92efae38249 --- image_png.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_png.c b/image_png.c index a5a23ad5..93de913b 100644 --- a/image_png.c +++ b/image_png.c @@ -212,7 +212,7 @@ void PNG_fReadData(void *png, unsigned char *data, size_t length) } memcpy(data, my_png.tmpBuf + my_png.tmpi, length); my_png.tmpi += (int)length; - Com_HexDumpToConsole(data, (int)length); + //Com_HexDumpToConsole(data, (int)length); } void PNG_error_fn(void *png, const char *message) -- 2.39.2