diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-06 09:25:04 +0200 |
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-06 09:25:04 +0200 |
| commit | 606d028dac5118329e7561af33b15988db84465f (patch) | |
| tree | 8a5b92b51a88714fee71d7f908283426f70b7dc1 /src/main.cpp | |
| parent | 7d9500d27fc91356c580e365351ff6e1bc1c95e1 (diff) | |
make everything prettier
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
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(); |
