From 746819470de51c4f7331b64980f3da9bfb750a12 Mon Sep 17 00:00:00 2001 From: fschildt Date: Tue, 25 Nov 2025 02:14:20 +0100 Subject: tetris: fix z-values --- src/games/tetris/Tetromino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/games/tetris/Tetromino.cpp') diff --git a/src/games/tetris/Tetromino.cpp b/src/games/tetris/Tetromino.cpp index a3ec9dd..ad75161 100644 --- a/src/games/tetris/Tetromino.cpp +++ b/src/games/tetris/Tetromino.cpp @@ -233,7 +233,7 @@ Tetromino::Draw(Id id, int32_t ori, V2F32 pos, float scale) Color color = GetColor(id); - g_renderer.PushRectangle(world_rect, color, Game::z_layer1); + g_renderer.PushRectangle(world_rect, color, Game::z_layer2); } } } -- cgit v1.2.3