summaryrefslogtreecommitdiff
path: root/apps/recorder/tetris.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/tetris.c')
-rw-r--r--apps/recorder/tetris.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/tetris.c b/apps/recorder/tetris.c
index 5264b8e789..53012fd717 100644
--- a/apps/recorder/tetris.c
+++ b/apps/recorder/tetris.c
@@ -319,7 +319,7 @@ static void move_down(void)
319 } 319 }
320 320
321 snprintf (s, sizeof(s), "%d Rows - Level %d", lines, level); 321 snprintf (s, sizeof(s), "%d Rows - Level %d", lines, level);
322 lcd_putsxy (2, 42, s, 0); 322 lcd_putsxy (2, 42, s);
323 323
324 new_block(); 324 new_block();
325 move_block(0,0,0); 325 move_block(0,0,0);
@@ -371,7 +371,7 @@ static bool game_loop(void)
371 if(gameover()) 371 if(gameover())
372 { 372 {
373 lcd_clearrect(0, 52, LCD_WIDTH, LCD_HEIGHT - 52); 373 lcd_clearrect(0, 52, LCD_WIDTH, LCD_HEIGHT - 52);
374 lcd_putsxy (2, 52, str(LANG_TETRIS_LOSE), 0); 374 lcd_putsxy (2, 52, str(LANG_TETRIS_LOSE));
375 lcd_update(); 375 lcd_update();
376 sleep(HZ * 3); 376 sleep(HZ * 3);
377 return false; 377 return false;
@@ -403,7 +403,7 @@ bool tetris(void)
403 init_tetris(); 403 init_tetris();
404 404
405 draw_frame(start_x, start_x + max_x - 1, start_y - 1, start_y + max_y); 405 draw_frame(start_x, start_x + max_x - 1, start_y - 1, start_y + max_y);
406 lcd_putsxy (2, 42, str(LANG_TETRIS_LEVEL), 0); 406 lcd_putsxy (2, 42, str(LANG_TETRIS_LEVEL));
407 lcd_update(); 407 lcd_update();
408 408
409 next_b = t_rand(blocks); 409 next_b = t_rand(blocks);