aboutsummaryrefslogtreecommitdiff
path: root/src/games/minesweeper
diff options
context:
space:
mode:
authorfschildt <florian.schildt@protonmail.com>2026-01-20 01:22:45 +0100
committerfschildt <florian.schildt@protonmail.com>2026-01-20 01:59:19 +0100
commit6da9be5810bf82e9d0b3b2a8bce7606ef2e2bf93 (patch)
tree28bb67ad879f8bbb36476a537fe8b69195500146 /src/games/minesweeper
parentf463853872210415e06fb3f863325fdba303ab65 (diff)
breakout: delete pong, add breakout
Diffstat (limited to 'src/games/minesweeper')
-rw-r--r--src/games/minesweeper/Minesweeper.cpp2
-rw-r--r--src/games/minesweeper/Minesweeper.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/games/minesweeper/Minesweeper.cpp b/src/games/minesweeper/Minesweeper.cpp
index f1aa223..a168dcb 100644
--- a/src/games/minesweeper/Minesweeper.cpp
+++ b/src/games/minesweeper/Minesweeper.cpp
@@ -186,7 +186,7 @@ Minesweeper::ProcessEvent(SDL_Event& event)
}
void
-Minesweeper::FinishUpdate(float dt)
+Minesweeper::Update(float dt)
{
}
diff --git a/src/games/minesweeper/Minesweeper.hpp b/src/games/minesweeper/Minesweeper.hpp
index 46c6b3d..0bb53aa 100644
--- a/src/games/minesweeper/Minesweeper.hpp
+++ b/src/games/minesweeper/Minesweeper.hpp
@@ -22,7 +22,7 @@ public:
private:
void Start() override;
void ProcessEvent(SDL_Event& event) override;
- void FinishUpdate(float dt) override;
+ void Update(float dt) override;
void Draw() override;
void DrawGameStartMenu() override;