freebsd-ports/games/doomlegacy/files/patch-sdl+i_system.c
Alexey Dokuchaev d31212aa6f - Update to version 1.45.2 (r1139, still officially beta)
- Remove some of our patches that were integrated or reworked upstream (bugs
  603, 607, and 617; revisions r1130, r1135)
- Now, system compiler is upheld by setting CC_ENVIRONMENT variable
- Try to unbreak parallel builds by pre-generating .dep files in `pre-build'
- Take maintainership back after giving it to games@ team didn't work out
2015-03-15 14:36:40 +00:00

11 lines
351 B
C

--- src/sdl/i_system.c.orig 2014-05-16 20:11:49 UTC
+++ src/sdl/i_system.c
@@ -508,6 +508,8 @@ void I_SysInit(void)
// Enable unicode key conversion
SDL_EnableUNICODE(1);
+ // Enable key auto repeat
+ SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
// Initialize the joystick subsystem.
I_JoystickInit();