Move variable declarations outside of for loops.

This commit is contained in:
sphere 2020-04-22 23:17:18 +02:00
parent e26788d014
commit f85bfc87f5
1 changed files with 3 additions and 3 deletions

View File

@ -693,13 +693,13 @@ void P_ScanThings(INT16 mapnum, INT16 wadnum, INT16 lumpnum)
static void P_SpawnEmeraldHunt(void)
{
INT32 emer[3], num[MAXHUNTEMERALDS], randomkey;
INT32 emer[3], num[MAXHUNTEMERALDS], i, randomkey;
fixed_t x, y, z;
for (int i = 0; i < numhuntemeralds; i++)
for (i = 0; i < numhuntemeralds; i++)
num[i] = i;
for (int i = 0; i < 3; i++)
for (i = 0; i < 3; i++)
{
// generate random index, shuffle afterwards
randomkey = P_RandomKey(numhuntemeralds--);