Files
pmd-red/src/dungeon_engine.c
AnonymousRandomPerson f2457501ee Decomped IsFixedDungeon()
2022-01-25 23:24:14 -05:00

14 lines
252 B
C

#include "global.h"
#include "dungeon_engine.h"
#include "constants/dungeon.h"
#include "dungeon_global_data.h"
bool8 IsFixedDungeon()
{
if (gDungeonGlobalData->tileset > DUNGEON_OUT_ON_RESCUE)
{
return TRUE;
}
return FALSE;
}