summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-02-03 12:28:15 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-02-03 12:28:15 +0100
commit53c7572acc0b7d11af77edd1d8934371a348220b (patch)
treefa444846b359045131833bd145dabed2575f0bbc /src/main.cpp
parent455f9e494d43b73a2ebee8d2f23b0ebe4fc255b0 (diff)
Fixes
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3cb5551..6dd0102 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -34,9 +34,9 @@ int main(){
game.initBoard();
while(game.inGame){
- game.updateBoard();
game.displayBoard();
game.input();
+ game.updateBoard();
}
return 0;