diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-17 11:29:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-17 11:29:23 +0200 |
commit | 8a6af71225c7d4f47964945658600c0826626e59 (patch) | |
tree | 46484d7ddf9ac9d271c803a1efb698a7f484af98 /src | |
parent | e37319814dce1a2ba90f2193066ec2e96a8c3594 (diff) |
Diffstat (limited to 'src')
-rw-r--r-- | src/critter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/critter.cpp b/src/critter.cpp index 32d1048b..8b6af68b 100644 --- a/src/critter.cpp +++ b/src/critter.cpp @@ -217,7 +217,7 @@ bool update_movement_1(critter& C, size_t& i, const anim_def& info, uint32_t nfr } template<rotation new_r> -requires (((int)new_r & 1) % 2 == 0) +requires ((int)new_r % 2 == 0) CORRADE_NEVER_INLINE bool update_movement_1(critter& C, size_t& i, const anim_def& info, uint32_t nframes) { |