aboutsummaryrefslogtreecommitdiffstats
path: root/demos/games/tetris/tetris.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/games/tetris/tetris.c')
-rw-r--r--demos/games/tetris/tetris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/games/tetris/tetris.c b/demos/games/tetris/tetris.c
index ad8debd7..cd4cc315 100644
--- a/demos/games/tetris/tetris.c
+++ b/demos/games/tetris/tetris.c
@@ -498,7 +498,7 @@ void tetrisStart(void) {
tetrisGameOver = gFalse;
printGameOver(); // removes "Game Over!" if tetrisGameOver == gFalse
tetrisPreviousGameTime = gfxSystemTicks();
- gfxThreadCreate(0, 1024, NORMAL_PRIORITY, thdTetris, 0);
+ gfxThreadCreate(0, 1024, gThreadpriorityNormal, thdTetris, 0);
while (!tetrisGameOver) {
gfxSleepMilliseconds(1000);
}