summaryrefslogtreecommitdiff
path: root/src/field/script_menu.c
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2017-12-17 20:07:53 -0800
committerMarcus Huderle <huderlem@gmail.com>2017-12-17 20:07:53 -0800
commit88716f4c0e053a984eeb4bef92fefa42027dd22a (patch)
tree326805fbcc882cd74cc43431e34b680b4971184c /src/field/script_menu.c
parentb14cdde8bd4afda2b0b73bb72b3cffc6961a5790 (diff)
Use FLAG_ prefix for all flags
Diffstat (limited to 'src/field/script_menu.c')
-rw-r--r--src/field/script_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/field/script_menu.c b/src/field/script_menu.c
index caa1d7562..1f8c2c45e 100644
--- a/src/field/script_menu.c
+++ b/src/field/script_menu.c
@@ -906,7 +906,7 @@ void ScriptMenu_CreatePCMenu(void)
else
width = 8;
- if (FlagGet(SYS_GAME_CLEAR)) // player has cleared game?
+ if (FlagGet(FLAG_SYS_GAME_CLEAR)) // player has cleared game?
{
numChoices = 4;
MenuDrawTextWindow(0, 0, width + 2, 9);
@@ -920,7 +920,7 @@ void ScriptMenu_CreatePCMenu(void)
MenuPrint(gPCText_LogOff, 1, 5);
}
- if (FlagGet(SYS_PC_LANETTE)) // player met lanette?
+ if (FlagGet(FLAG_SYS_PC_LANETTE)) // player met lanette?
MenuPrint(gPCText_LanettesPC, 1, 1);
else
MenuPrint(gPCText_SomeonesPC, 1, 1);