diff options
author | Bardur Arantsson <bardur@scientician.net> | 2017-05-02 19:20:57 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2017-05-02 19:20:57 +0200 |
commit | fdb532aec5234db77a9111d219f8a870d660c4fc (patch) | |
tree | a997c53b956dfdadc09b22967c0afe9d348fd2c2 /src/help.cc | |
parent | 6a35e3de332df186eab39c3b67506882409a3ca2 (diff) |
Change away from bool_ for hooks
Diffstat (limited to 'src/help.cc')
-rw-r--r-- | src/help.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/help.cc b/src/help.cc index 43d4873f..08956f70 100644 --- a/src/help.cc +++ b/src/help.cc @@ -558,7 +558,7 @@ static triggered_help_type triggered_help[TRIGGERED_HELP_MAX] = } }; -static bool_ triggered_help_hook(void *data, void *in, void *out) +static bool triggered_help_hook(void *data, void *in, void *out) { triggered_help_type *triggered_help = (triggered_help_type *) data; /* Not triggered before and trigger now? */ @@ -576,13 +576,13 @@ static bool_ triggered_help_hook(void *data, void *in, void *out) } } /* Don't stop processing */ - return FALSE; + return false; } -static bool_ hook_game_start(void *data, void *in, void *out) +static bool hook_game_start(void *data, void *in, void *out) { game_started = TRUE; - return FALSE; + return false; } static void setup_triggered_help_hook(int i) |