diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2019-10-09 18:12:37 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2019-10-09 18:12:37 -0400 |
commit | 734cada66a2d9938cdc9a2806f68352d06da6e9a (patch) | |
tree | 57199b9dae5c803a0ce9b193fa7f0e923ee8d6fa /src/help_system_812B1E0.c | |
parent | 5e0f0ca6dcf9699b5cd8252c74e4a7676470dbc4 (diff) |
Address review comments
Diffstat (limited to 'src/help_system_812B1E0.c')
-rw-r--r-- | src/help_system_812B1E0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help_system_812B1E0.c b/src/help_system_812B1E0.c index 6fd069f1c..a527525f8 100644 --- a/src/help_system_812B1E0.c +++ b/src/help_system_812B1E0.c @@ -1007,14 +1007,14 @@ bool8 sub_812B45C(void) void HelpSystem_Disable(void) { - gHelpSystemEnabled = 0; + gHelpSystemEnabled = FALSE; } void HelpSystem_Enable(void) { if (gUnknown_203ADFA != 2 && gUnknown_203ADFA != 3) { - gHelpSystemEnabled = 1; + gHelpSystemEnabled = TRUE; sub_812B4B8(); } } |