diff --git a/similar/main/gamecntl.cpp b/similar/main/gamecntl.cpp index cddea9baa..bf68ceea9 100644 --- a/similar/main/gamecntl.cpp +++ b/similar/main/gamecntl.cpp @@ -124,8 +124,6 @@ using std::min; // Global Variables ----------------------------------------------------------- -int Debug_spew; - // Function prototypes -------------------------------------------------------- #ifndef RELEASE static void do_cheat_menu(); @@ -1295,15 +1293,6 @@ static window_event_result HandleTestKey(int key) case KEY_DEBUGGED + KEY_SHIFTED+KEY_F11: advance_sound(); play_test_sound(); break; #endif - case KEY_DEBUGGED + KEY_M: - Debug_spew = !Debug_spew; - if (Debug_spew) { - HUD_init_message_literal(HM_DEFAULT, "Debug Spew: ON" ); - } else { - HUD_init_message_literal(HM_DEFAULT, "Debug Spew: OFF" ); - } - break; - case KEY_DEBUGGED + KEY_C: do_cheat_menu(); break;