mirror of
https://github.com/pret/pmd-red.git
synced 2026-08-18 14:57:21 -05:00
14 lines
252 B
C
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;
|
|
}
|