- 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
11 lines
351 B
C
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();
|