From 84f136b51e07b4d9815c6b033e897ebaef4f16a7 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 23 Mar 2014 21:06:02 -0400 Subject: Set default for key_menu_screenshot to 0. In #364 I recommended -1 as the default to avoid taking screenshots in some situations where a key event is posted for key 0. It turns out that wasn't such a great idea, as -1 is not parsed properly by the config parser, and is shown as ??-1 in the setup tool. Default to zero instead, and add guards to prevent screenshots being taken by mistake. Thanks to Alexandre-Xavier for pointing this out. --- src/m_controls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/m_controls.c') diff --git a/src/m_controls.c b/src/m_controls.c index 294c0b6f..bcc819ea 100644 --- a/src/m_controls.c +++ b/src/m_controls.c @@ -179,7 +179,7 @@ int key_menu_gamma = KEY_F11; int key_menu_incscreen = KEY_EQUALS; int key_menu_decscreen = KEY_MINUS; -int key_menu_screenshot = -1; +int key_menu_screenshot = 0; // // Joystick controls -- cgit v1.2.3