SDL_EnableKeyRepeat (3) Linux Manual Page
SDL_EnableKeyRepeat – Set keyboard repeat rate. Synopsis #include "SDL.h" int SDL_EnableKeyRepeat(int delay, int interval); Description Enables or disables the keyboard repeat rate. delay specifies how long the key must be pressed before it begins repeating, it then repeats at the speed specified by interval. Both delay and interval are expressed in milliseconds. Setting delay to…
