diff --git a/src/gamelib/collider.cpp b/src/gamelib/collider.cpp index 7ae37f7..14613bb 100644 --- a/src/gamelib/collider.cpp +++ b/src/gamelib/collider.cpp @@ -34,8 +34,8 @@ namespace curry { vec2us check_tiles_count (const vec2us& parObjSize, const vec2f& parDirection) { assert(parObjSize > 0); - const uint16_t horz = (parDirection.y() != 0.0f ? parObjSize.x() : 0); - const uint16_t vert = (parDirection.x() != 0.0f ? parObjSize.y() : 0); + const uint16_t horz = (parDirection.y() != 0.0f ? parObjSize.x() : 1); + const uint16_t vert = (parDirection.x() != 0.0f ? parObjSize.y() : 1); return vec2us(horz, vert); }