From 989ed101bc9ff659736354f42ac22dfd23809e92 Mon Sep 17 00:00:00 2001 From: darkvater Date: Sun, 12 Sep 2004 22:03:14 +0000 Subject: (svn r224) -Fix: Music now finally works on WinXP. DirectMusic is now default for an OS >= WinNT4 (WinNT4, Win2k, WinXP), and MIDI driver for lower OS's (Win95, Win98, WinME, etc). --- console.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'console.c') diff --git a/console.c b/console.c index 8c9b7a025..227120bb1 100644 --- a/console.c +++ b/console.c @@ -730,7 +730,7 @@ void IConsoleCmdHook(const byte * name, byte type, void * proc) bool IConsoleCmdHookHandle(_iconsole_cmd * hook_cmd, byte type) { - bool (*proc)(_iconsole_cmd * hook_cmd); + bool (*proc)(_iconsole_cmd * hook_cmd) = NULL; switch (type) { case ICONSOLE_HOOK_AFTER_EXEC: proc = hook_cmd->hook_after_exec; @@ -741,11 +741,9 @@ bool IConsoleCmdHookHandle(_iconsole_cmd * hook_cmd, byte type) case ICONSOLE_HOOK_ACCESS: proc = hook_cmd->hook_access; break; - default: - proc = NULL; - break; + default: return true; } - if (proc == NULL) return true; + return proc(hook_cmd); } -- cgit v1.2.3-54-g00ecf