mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
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+ssh://svn.code.sf.net/p/quakespasm/code/trunk@168 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
562e37c468
commit
73c8c176f0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue