diff options
Diffstat (limited to 'src/engine/graphics/scene.cpp')
-rw-r--r-- | src/engine/graphics/scene.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/engine/graphics/scene.cpp b/src/engine/graphics/scene.cpp index b0d77b8..7a0e960 100644 --- a/src/engine/graphics/scene.cpp +++ b/src/engine/graphics/scene.cpp @@ -11,13 +11,13 @@ #include <utility> Scene::Scene( - IMatrixFactory<std::string_view> matrix_factory, + IMatrixFactory<MatrixElement> matrix_factory, std::shared_ptr<ICursorController> cursor_controller) noexcept : _matrix(matrix_factory(size() - Bounds({.width = 0U, .height = 1U}))), _cursor_controller(std::move(cursor_controller)), _is_shown(false) { - _matrix->fill(" "); + _matrix->fill(' '); } void Scene::enter() noexcept @@ -80,8 +80,7 @@ auto Scene::size() const noexcept -> Bounds return Bounds({window_size.ws_col, window_size.ws_row}); } -auto Scene::get_matrix() const noexcept - -> const std::shared_ptr<IMatrix<std::string_view>> & +auto Scene::get_matrix() const noexcept -> const std::shared_ptr<IMatrix<MatrixElement>> & { return _matrix; } |