From 606d028dac5118329e7561af33b15988db84465f Mon Sep 17 00:00:00 2001 From: fschildt Date: Mon, 6 Oct 2025 09:25:04 +0200 Subject: make everything prettier --- src/main.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 7fc7af6..7660628 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,14 +28,11 @@ Game::GameType DrawGameMenu() if (ImGui::Button("Tetris")) { type = Game::tetris; } - if (ImGui::Button("Snake")) { - type = Game::snake; - } if (ImGui::Button("Minesweeper")) { type = Game::minesweeper; } - if (ImGui::Button("Breakout")) { - type = Game::breakout; + if (ImGui::Button("Snake")) { + type = Game::snake; } ImGui::End(); -- cgit v1.2.3