comment out test file writes

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1129 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2005-07-03 05:12:24 +00:00
parent 1221d62d09
commit 4261e03dc7

View file

@ -460,7 +460,7 @@ void SWDraw_Init (void)
extern qbyte default_conchar[11356];
image = ReadTargaFile(default_conchar, sizeof(default_conchar), &width, &height, false);
COM_WriteFile("test.dat", image, 256*256*4);
// COM_WriteFile("test.dat", image, 256*256*4);
draw_chars = BZ_Malloc(128*128);
@ -473,7 +473,7 @@ void SWDraw_Init (void)
dest[x] = src[(x*2)*4]?15:0;//GetPalette(image[i*4], image[i*4+1], image[i*4+2]);
}
COM_WriteFile("test2.dat", draw_chars, 128*128);
// COM_WriteFile("test2.dat", draw_chars, 128*128);
BZ_Free(image);
}