diff --git a/source/build/include/common.h b/source/build/include/common.h index c91407641..ff3ac4de1 100644 --- a/source/build/include/common.h +++ b/source/build/include/common.h @@ -78,11 +78,8 @@ static inline int32_t sepldist(const int32_t dx, const int32_t dy) { vec2_t d = { klabs(dx), klabs(dy) }; - if (playing_rr) - { - if (!d.y) return d.x; - if (!d.x) return d.y; - } + if (!d.y) return d.x; + if (!d.x) return d.y; if (d.x < d.y) swaplong(&d.x, &d.y);