Fixed bug #112
Added SDL_GetKeyRepeat() --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401511
This commit is contained in:
parent
72dd8e4f2b
commit
d066241b5d
3 changed files with 11 additions and 0 deletions
|
@ -569,3 +569,9 @@ int SDL_EnableKeyRepeat(int delay, int interval)
|
|||
return(0);
|
||||
}
|
||||
|
||||
void SDL_GetKeyRepeat(int *delay, int *interval)
|
||||
{
|
||||
*delay = SDL_KeyRepeat.delay;
|
||||
*interval = SDL_KeyRepeat.interval;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue