summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-01 10:40:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-01 10:40:10 +0000
commit90ea952230b6146b0c5e022309ceb53e7fc5fc55 (patch)
treeddecfd70ad3df8ce243750fd401583b399ed1b22
parent96d0282f32ef978219a66cd7224e80c398c9941c (diff)
slow down tetris a bit, now when the X11 simulator supports sleep() with
an approximately correct sleep time git-svn-id: svn://svn.rockbox.org/rockbox/trunk@369 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/tetris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/tetris.c b/uisimulator/tetris.c
index f9b9c5c5ee..5cf1e1068d 100644
--- a/uisimulator/tetris.c
+++ b/uisimulator/tetris.c
@@ -305,7 +305,7 @@ void game_loop(void)
move_down();
}
count++;
- sleep(1);
+ sleep(10);
}
if(gameover()) {
char w, h;