diff options
Diffstat (limited to 'nexus')
-rw-r--r-- | nexus/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/arch.h b/nexus/arch.h index 15184d26..5dcc53bc 100644 --- a/nexus/arch.h +++ b/nexus/arch.h @@ -373,7 +373,7 @@ inline bool chip_get_hrow_loc(const ChipInfoPOD *chip, int32_t x, int32_t y, int { bool y_found = false; for (auto &s : chip->globals->spines) { - if (std::abs(y - s.spine_row) < 3) { + if (std::abs(y - s.spine_row) <= 3) { hrow_y = s.spine_row; y_found = true; break; |