diff options
Diffstat (limited to 'src/engine/user')
-rw-r--r-- | src/engine/user/cursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/user/cursor.cpp b/src/engine/user/cursor.cpp index 70828c3..d348d9e 100644 --- a/src/engine/user/cursor.cpp +++ b/src/engine/user/cursor.cpp @@ -31,7 +31,7 @@ void CursorController::move_to(const Vector2 &position) noexcept MOVE_CURSOR_TO, fmt::arg("esc", ESC), fmt::arg("row", inverted_pos.get_y()), - fmt::arg("column", inverted_pos.get_x())); + fmt::arg("column", inverted_pos.get_x() + 1)); std::cout.flush(); _position = position; |