blob: dd254418babb76d43840f3d339b059a897119228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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;
}
|