diff options
Diffstat (limited to 'floormat/main.hpp')
-rw-r--r-- | floormat/main.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/floormat/main.hpp b/floormat/main.hpp index 92882bae..3fbef522 100644 --- a/floormat/main.hpp +++ b/floormat/main.hpp @@ -66,7 +66,7 @@ struct floormat_main virtual struct world& world() noexcept = 0; virtual struct world& reset_world() noexcept = 0; - virtual struct world& reset_world(struct world) noexcept = 0; + virtual struct world& reset_world(struct world&& w) noexcept = 0; virtual SDL_Window* window() noexcept = 0; Vector2 dpi_scale() const noexcept { return _dpi_scale; } static int get_mods() noexcept; |