From 6da9be5810bf82e9d0b3b2a8bce7606ef2e2bf93 Mon Sep 17 00:00:00 2001 From: fschildt Date: Tue, 20 Jan 2026 01:22:45 +0100 Subject: breakout: delete pong, add breakout --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index e3241d4..ebbaa55 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,8 +36,8 @@ DrawGameMenu() if (ImGui::Button("Snake")) { type = Game::snake; } - if (ImGui::Button("Pong")) { - type = Game::pong; + if (ImGui::Button("Breakout")) { + type = Game::breakout; } ImGui::End(); -- cgit v1.2.3