Philpp Petermann's tetris patch: save score after ending game

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1972 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Eric Linenberg 2002-08-26 03:29:13 +00:00
parent 36c11657bf
commit 2bf41efe31

View file

@ -316,7 +316,7 @@ void move_down(void)
}
snprintf (s, sizeof(s), "%d Rows - Level %d", lines, level);
lcd_putsxy (2, 52, s, 0);
lcd_putsxy (2, 42, s, 0);
new_block();
move_block(0,0,0);
@ -394,7 +394,7 @@ Menu tetris(void)
init_tetris();
draw_frame(start_x, start_x + max_x - 1, start_y - 1, start_y + max_y);
lcd_putsxy (2, 52, "0 Rows - Level 0", 0);
lcd_putsxy (2, 42, "0 Rows - Level 0", 0);
lcd_update();
next_b = t_rand(blocks);