diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/scenery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scenery.cpp b/src/scenery.cpp index a07a69a5..d6b9fb22 100644 --- a/src/scenery.cpp +++ b/src/scenery.cpp @@ -96,7 +96,7 @@ Vector2 scenery::depth_offset() const if (sc_type == scenery_type::door) { const bool is_open = frame != atlas->info().nframes-1; - constexpr auto off_opened = Vector2(-1, 0) + Vector2(); + constexpr auto off_opened = Vector2(-1, 0); constexpr auto off_closed = Vector2(0, 0); const auto vec = is_open ? off_opened : off_closed; const auto offset = rotate_point(vec, rotation::N, r); |