Fixed all sdl_delays to wait for 20ms, not 1. Avoid problems for low-latency guys.

Also, made the splash screen stay as long as you don't click or key. Mouse moves are discarded. Sorry!


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@800 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2009-05-12 19:05:33 +00:00
parent 3c0a940301
commit ff83f12b31
5 changed files with 14 additions and 14 deletions

2
help.c
View File

@@ -88,7 +88,7 @@ void Redefine_control(word *shortcut, int x_pos, int y_pos)
Display_cursor();
while (1)
{
while(!Get_input())SDL_Delay(1);
while(!Get_input())SDL_Delay(20);
if (Key==KEY_ESC)
return;
if (Key!=0)