This commit is contained in:
cypress 2024-06-29 18:16:13 -07:00
commit a35cfdfd0e
2 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ APP_DESCRIPTION := Call of Duty Zombies remake, ctrQuake based.
#---------------------------------------------------------------------------------
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft
CFLAGS := -g -Wall -O3 -mword-relocations \
CFLAGS := -g -fpermissive -Wall -O3 -mword-relocations \
-fomit-frame-pointer -ffunction-sections \
$(ARCH)

View file

@ -1476,7 +1476,7 @@ int closedset[MAX_WAYPOINTS]; // The set of nodes already evaluated.
int openset[MAX_WAYPOINTS];//Actual sorted open list
int opensetRef[MAX_WAYPOINTS];//Reference values of open list
int opensetLength;//equivalent of javaScript's array[].length;
#define MaxZombies 16
#define MaxZombies 18
zombie_ai zombie_list[MaxZombies];
//Debug//
@ -3450,7 +3450,7 @@ nzp_maxai()
void PF_MaxZombies(void)
{
if (new3ds_flag)
G_FLOAT(OFS_RETURN) = 18;
G_FLOAT(OFS_RETURN) = MaxZombies;
else
G_FLOAT(OFS_RETURN) = 12;
}