diff options
author | Darkvater <Darkvater@openttd.org> | 2005-06-02 15:48:28 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2005-06-02 15:48:28 +0000 |
commit | 2ef99ea7b09f44c8576f8c5a12ab83e79cbd7877 (patch) | |
tree | cc12a39fbb66f0a46a0814b070800fef299b910e | |
parent | d89ab10ba2ca1c94263ab8e6020306f8e043374d (diff) | |
download | openttd-2ef99ea7b09f44c8576f8c5a12ab83e79cbd7877.tar.xz |
(svn r2395) - Fix: oops, forgot a break in a console switch.
-rw-r--r-- | console.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -499,7 +499,7 @@ static void IConsoleHookAdd(IConsoleHooks *hooks, IConsoleHookTypes type, IConso case ICONSOLE_HOOK_POST_ACTION: hooks->post = proc; break; - default: NOT_REACHED(); + default: NOT_REACHED(); } } @@ -526,7 +526,7 @@ static bool IConsoleHookHandle(const IConsoleHooks *hooks, IConsoleHookTypes typ case ICONSOLE_HOOK_POST_ACTION: proc = hooks->post; break; - default: NOT_REACHED(); + default: NOT_REACHED(); } return (proc == NULL) ? true : proc(); @@ -925,6 +925,7 @@ static char *IConsoleVarGetStringValue(const IConsoleVar *var) break; case ICONSOLE_VAR_STRING: value = (char*)var->addr; + break; default: NOT_REACHED(); } |