From: havoc Date: Fri, 26 May 2006 03:09:02 +0000 (+0000) Subject: don't hexdump png images while reading them (why did it do this??) X-Git-Tag: xonotic-v0.1.0preview~3977 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=cd8aa0d9770704a8a25e35d565b310cbca0a0097;p=xonotic%2Fdarkplaces.git 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 --- 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)