aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
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();