mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Fix not-initialized variable warning in 'soundanims' CON token parser.
git-svn-id: https://svn.eduke32.com/eduke32@2309 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
99e08bf441
commit
6ca24a0543
1 changed files with 1 additions and 1 deletions
|
@ -8349,7 +8349,7 @@ static int32_t parsedefinitions_game(scriptfile *script, int32_t preload)
|
||||||
{
|
{
|
||||||
char *otokptr = script->ltextptr;
|
char *otokptr = script->ltextptr;
|
||||||
char *animsoundsend = NULL;
|
char *animsoundsend = NULL;
|
||||||
int32_t animnum, numpairs=0, allocsz=4, bad, lastframenum=INT32_MIN;
|
int32_t animnum, numpairs=0, allocsz=4, bad=1, lastframenum=INT32_MIN;
|
||||||
|
|
||||||
static const tokenlist hardcoded_anim_tokens[] =
|
static const tokenlist hardcoded_anim_tokens[] =
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue