From b57b017907e061fbf38c15693a696f04bee754c4 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 29 Dec 2010 22:30:20 +0000 Subject: [PATCH] Disable key repeat, this breaks Zoom and other things --- src/graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics.c b/src/graphics.c index 6d6ebbf61..3fcd0e4a8 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -3386,7 +3386,7 @@ void sdl_open(void) SDL_WM_SetCaption("The Powder Toy", "Powder Toy"); sdl_seticon(); SDL_EnableUNICODE(1); - SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); + //SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); } #ifdef OpenGL