mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@1027 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8fddaf82a3
commit
6dbf04a6fe
1 changed files with 2 additions and 1 deletions
|
@ -423,7 +423,8 @@ int AddGameArray(const char *pszLabel, int asize)
|
|||
initprintf("%s:%d: error: array name `%s' exceeds limit of %d characters.\n",compilefile,line_number,pszLabel, MAXARRAYLABEL);
|
||||
return 0;
|
||||
}
|
||||
if (HASH_find(&arrayH,pszLabel)>=0 && !aGameArrays[i].bReset)
|
||||
i = HASH_find(&arrayH,pszLabel);
|
||||
if (i >=0 && !aGameArrays[i].bReset)
|
||||
{
|
||||
// found it it's a duplicate in error
|
||||
warning++;
|
||||
|
|
Loading…
Reference in a new issue