From 1bdb202ef88a533e266da24cd28a35da9574423e Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Mon, 31 May 2010 06:27:56 +0000 Subject: [PATCH] gl_mesh.c: Change the type of used[] array from qboolean to int, because it is assigned not just true or false values but other integers like "2" as well, and it would cause a mess if compiled as a C++ source. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@168 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/gl_mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/gl_mesh.c b/Quake/gl_mesh.c index c5158eac..6cd1c4e6 100644 --- a/Quake/gl_mesh.c +++ b/Quake/gl_mesh.c @@ -36,7 +36,7 @@ ALIAS MODEL DISPLAY LIST GENERATION model_t *aliasmodel; aliashdr_t *paliashdr; -qboolean used[8192]; +int used[8192]; // qboolean // the command list holds counts and s/t values that are valid for // every frame