1
0
Fork 0
forked from len0rd/rockbox

increased length of 'you lose' display

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@881 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Hak 2002-06-04 08:32:07 +00:00
parent 7195d9c750
commit 84ee4ca964

View file

@ -350,7 +350,7 @@ void game_loop(void)
move_down(); move_down();
} }
count++; count++;
sleep(10); sleep(HZ/10);
} }
if(gameover()) { if(gameover()) {
int w, h; int w, h;
@ -362,7 +362,7 @@ void game_loop(void)
lcd_putsxy(TETRIS_TITLE_XLOC, TETRIS_TITLE_YLOC, "You lose!", lcd_putsxy(TETRIS_TITLE_XLOC, TETRIS_TITLE_YLOC, "You lose!",
TETRIS_TITLE_FONT); TETRIS_TITLE_FONT);
lcd_update(); lcd_update();
sleep(2); sleep(HZ);
return; return;
} }
move_down(); move_down();