From 0d20afaf5e0730ba2bf93378a4168a6a2037e9d6 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Thu, 21 Apr 2011 03:36:08 +0000 Subject: [PATCH] sdl: ESCAPE now quits by default (unless your running with gui). this can be disabled by setting "SDL.Hotkeys.Quit = 0" in fceux.cfg --- src/drivers/sdl/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/sdl/config.cpp b/src/drivers/sdl/config.cpp index a1fb500d..91a94a91 100644 --- a/src/drivers/sdl/config.cpp +++ b/src/drivers/sdl/config.cpp @@ -341,7 +341,7 @@ InitConfig() SDLK_COMMA, // toggle input display SDLK_q, // toggle movie RW SDLK_QUOTE, // toggle mute capture - 0, // quit + SDLK_QUIT, // quit SDLK_DELETE, // frame advance lag skip SDLK_SLASH, // lag counter display SDLK_0, SDLK_1, SDLK_2, SDLK_3, SDLK_4, SDLK_5,