diff options
-rw-r--r-- | apps/recorder/tetris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/tetris.c b/apps/recorder/tetris.c index 6d627cb95f..aa96a550a4 100644 --- a/apps/recorder/tetris.c +++ b/apps/recorder/tetris.c @@ -345,7 +345,7 @@ void game_loop(void) move_block(2,0,0); } if ( b & BUTTON_UP ) { - move_block(0,0,1); + move_block(0,0,-1); } if ( b & BUTTON_DOWN ) { move_down(); |