summaryrefslogtreecommitdiff
path: root/src/script_menu.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2017-01-01 22:03:37 -0800
committerYamaArashi <shadow962@live.com>2017-01-01 22:03:37 -0800
commit6983ce9c20821ff70b59b2d18b77aaccbd189f0a (patch)
tree054b40a451004cb64490307aff635c7c634996b2 /src/script_menu.c
parentfb756fb0e35334f563642442c254d5073dd65f72 (diff)
add flags
Diffstat (limited to 'src/script_menu.c')
-rw-r--r--src/script_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script_menu.c b/src/script_menu.c
index 1010435cc..5c844a6fb 100644
--- a/src/script_menu.c
+++ b/src/script_menu.c
@@ -336,7 +336,7 @@ void CreatePCMenu(void)
else
width = 8;
- if(FlagGet(0x804)) // player has cleared game?
+ if(FlagGet(SYS_GAME_CLEAR)) // player has cleared game?
{
numChoices = 4;
MenuDrawTextWindow(0, 0, width + 2, 9);
@@ -350,7 +350,7 @@ void CreatePCMenu(void)
MenuPrint(gPCText_LogOff, 1, 5);
}
- if(FlagGet(0x84B)) // player met lanette?
+ if(FlagGet(SYS_PC_LANETTE)) // player met lanette?
MenuPrint(gPCText_LanettesPC, 1, 1);
else
MenuPrint(gPCText_SomeonesPC, 1, 1);