diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/script_menu.c | 4 |
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); |