From 49909763bdd7c22c9dbf5f7aca44e678903df717 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 09:59:46 +0000 Subject: [PATCH] Changes --- src/pages/Tetris.tsx | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/src/pages/Tetris.tsx b/src/pages/Tetris.tsx index 10f49bb..be1eb12 100644 --- a/src/pages/Tetris.tsx +++ b/src/pages/Tetris.tsx @@ -579,7 +579,7 @@ const Tetris = () => { {isMobile && gameMode === '1p' && ( <> - + @@ -588,16 +588,24 @@ const Tetris = () => { LINES{lines} {gameStarted && !gameOver ? ( - - ← - ↓ - → - ↻ - ⬇ - {isPaused ? '▶' : '❚❚'} + + {/* D-pad style controls */} + + + ↻ + + ← + {isPaused ? '▶' : '❚❚'} + → + + ↓ + + + {/* Hard drop button */} + ⬇ ) : ( - startGame('1p')} className="font-minecraft text-sm py-3 px-8 border border-primary bg-primary/20 text-primary">{gameOver ? 'RETRY' : 'START'} + startGame('1p')} className="font-minecraft text-sm py-3 px-8 border border-primary bg-primary/20 text-primary hover:bg-primary/40 transition-all box-glow">{gameOver ? 'RETRY' : 'START'} )}
LINES
{lines}