summaryrefslogtreecommitdiff
path: root/src/game/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/interface.cpp')
-rw-r--r--src/game/interface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/interface.cpp b/src/game/interface.cpp
index c40023d..fbde982 100644
--- a/src/game/interface.cpp
+++ b/src/game/interface.cpp
@@ -34,7 +34,7 @@ void state_t::start_following(void)
camera.following = true;
camera.zero_point_s = camera.center;
camera.center = v2f_t(0, 0);
- print(text::get(text::FOLLOWING_ON));
+ print("Following: on.");
}
void state_t::stop_following(void)
@@ -42,7 +42,7 @@ void state_t::stop_following(void)
camera.following = false;
camera.center += camera.zero_point_s;
camera.zero_point_s = v2f_t(0, 0);
- print(text::get(text::FOLLOWING_OFF));
+ print("Following: off.");
}
void pie_menu_t::open(v2f_t wmouse, v2f_t mouse)
@@ -239,10 +239,10 @@ void state_t::tick(double dt)
case sf::Keyboard::Key::Space:
if (!game->paused) {
game->pause();
- print(text::get(text::PAUSED));
+ print("PAUSED");
} else {
game->resume();
- print(text::get(text::UNPAUSED));
+ print("UNPAUSED");
}
break;