From 5252b564d873a0767d7bffacf9434178632a8c13 Mon Sep 17 00:00:00 2001 From: uso Date: Fri, 1 Feb 2008 06:01:18 +0000 Subject: [PATCH] get rid of the 'is in game -- showing quit message' message in the console (downgrade it to debug level) --- src/hotkeys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotkeys.cpp b/src/hotkeys.cpp index 9e43796df40..390d6786a20 100644 --- a/src/hotkeys.cpp +++ b/src/hotkeys.cpp @@ -831,7 +831,7 @@ void execute_command(display& disp, HOTKEY_COMMAND command, command_executor* ex break; case HOTKEY_QUIT_GAME: { if(disp.in_game()) { - ERR_G << "is in game -- showing quit message\n"; + DBG_G << "is in game -- showing quit message\n"; const int res = gui::dialog(disp,_("Quit"),_("Do you really want to quit?"),gui::YES_NO).show(); if(res == 0) { throw end_level_exception(QUIT);