From 74df88c3b595907b29495d5755d8120107b0c804 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Thu, 29 Jan 2004 17:00:24 +0000 Subject: [PATCH] enabled keyrepeat again at slightly slower interval Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1623 --- src/gui/sdlmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index b653fe3e..ee2f5144 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: sdlmain.cpp,v 1.58 2004-01-29 09:26:45 qbix79 Exp $ */ +/* $Id: sdlmain.cpp,v 1.59 2004-01-29 17:00:24 qbix79 Exp $ */ #ifndef _GNU_SOURCE #define _GNU_SOURCE @@ -598,7 +598,7 @@ static void GUI_StartUp(Section * sec) { LOG_MSG("SDL:You are running in 24 bpp mode, this will slow down things!"); } GFX_SetSize(640,400,8,1.0,1.0,0); -// SDL_EnableKeyRepeat(250,30); + SDL_EnableKeyRepeat(250,40); SDL_EnableUNICODE(1); /* Get some Keybinds */ KEYBOARD_AddEvent(KBD_f9,KBD_MOD_CTRL,KillSwitch);