aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/restart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/cmd/restart.cpp')
-rw-r--r--frontend/cmd/restart.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/cmd/restart.cpp b/frontend/cmd/restart.cpp
index 0ecb747..ed8d019 100644
--- a/frontend/cmd/restart.cpp
+++ b/frontend/cmd/restart.cpp
@@ -2,7 +2,8 @@
using namespace std;
-FollowupAction GameController::cmd_restart(string &) {
- return FollowupAction::RESTART;
+void GameController::cmd_restart(string &) {
+ this->playing = false;
+ this->quit = false;
}