aboutsummaryrefslogtreecommitdiff
path: root/src/engine/user/cursor.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-27 20:44:07 +0200
committerHampusM <hampus@hampusmat.com>2022-06-27 20:44:07 +0200
commit9d0fe1b42c9f6a5c09bab444966d347a71a4b905 (patch)
tree6a5f282e2fcae5ef3fd987e25ad5f6e6fc95169d /src/engine/user/cursor.cpp
parent837c8e8f5224dbc0e8b7b36d3e389482e8553e9f (diff)
refactor: remove unused cursor controller method ensure_position
Diffstat (limited to 'src/engine/user/cursor.cpp')
-rw-r--r--src/engine/user/cursor.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/engine/user/cursor.cpp b/src/engine/user/cursor.cpp
index b38cee0..e3ad56c 100644
--- a/src/engine/user/cursor.cpp
+++ b/src/engine/user/cursor.cpp
@@ -53,19 +53,6 @@ auto CursorController::where() const noexcept -> Vector2
return _position;
}
-void CursorController::ensure_position() noexcept
-{
- fmt::print(REQUEST_CURSOR_POSITION, fmt::arg("esc", ESC));
- std::cout.flush();
-
- Vector2Options vector2_options = {};
-
- // NOLINTNEXTLINE(cppcoreguidelines-pro-type-vararg)
- scanf("\033[%u;%uR", &vector2_options.y, &vector2_options.x);
-
- _position = _invert_position_y(Vector2(vector2_options));
-}
-
void CursorController::update_position(const Vector2 &position) noexcept
{
_position = position;