mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +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)
|
static int32_t parsenamesfile(scriptfile *script)
|
||||||
{
|
{
|
||||||
int32_t syms;
|
int32_t syms = 0;
|
||||||
|
|
||||||
tokenlist const tokens[] =
|
tokenlist const tokens[] =
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue