mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Mapster32: fix variable that is used uninitialized.
git-svn-id: https://svn.eduke32.com/eduke32@5423 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
d204b6df99
commit
29e16fb6c9
1 changed files with 1 additions and 1 deletions
|
@ -10173,7 +10173,7 @@ enum {
|
|||
|
||||
static int32_t parsenamesfile(scriptfile *script)
|
||||
{
|
||||
int32_t syms;
|
||||
int32_t syms = 0;
|
||||
|
||||
tokenlist const tokens[] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue