mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Fix variable-length array definition, just in case.
This commit is contained in:
parent
01a1297631
commit
e26788d014
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ void P_ScanThings(INT16 mapnum, INT16 wadnum, INT16 lumpnum)
|
||||||
|
|
||||||
static void P_SpawnEmeraldHunt(void)
|
static void P_SpawnEmeraldHunt(void)
|
||||||
{
|
{
|
||||||
INT32 emer[3], num[numhuntemeralds], randomkey;
|
INT32 emer[3], num[MAXHUNTEMERALDS], randomkey;
|
||||||
fixed_t x, y, z;
|
fixed_t x, y, z;
|
||||||
|
|
||||||
for (int i = 0; i < numhuntemeralds; i++)
|
for (int i = 0; i < numhuntemeralds; i++)
|
||||||
|
|
Loading…
Reference in a new issue