diff options
Diffstat (limited to 'src/game/game.cpp')
-rw-r--r-- | src/game/game.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp index 055e212..f788d15 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -4,7 +4,6 @@ #include "commands/move_cursor.hpp" #include "commands/quit.hpp" #include "game/cursor_listener.hpp" -#include "strings.hpp" #include <fmt/core.h> #include <iostream> @@ -29,9 +28,7 @@ void Game::on_start() noexcept _cursor_controller->move_to(center_position); - _scene->write_status(fmt::format(STATUS_BAR_COORDINATES, - fmt::arg("x", center_position.get_x()), - fmt::arg("y", center_position.get_y()))); + cursor_listener->update(center_position); } void Game::on_exit() const noexcept |