diff options
Diffstat (limited to 'src/engine/graphics/scene.cpp')
-rw-r--r-- | src/engine/graphics/scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/graphics/scene.cpp b/src/engine/graphics/scene.cpp index 6b85915..660e3ca 100644 --- a/src/engine/graphics/scene.cpp +++ b/src/engine/graphics/scene.cpp @@ -53,7 +53,7 @@ void Scene::write_status(const std::string_view &str) noexcept _cursor_controller->move_to( Vector2({.x = 2, .y = static_cast<Vector2::Value>(window_size.get_height())})); - const auto background_color = get_background_esc_seq(STATUSBAR_COLOR); + auto background_color = get_background_esc_seq(STATUSBAR_COLOR); fmt::print("{}", background_color); fmt::print(ERASE_ENTIRE_LINE, fmt::arg("esc", ESC)); |