Update DS-B/routeplanner/main.c

This commit is contained in:
Nanokloon 2025-04-07 21:22:58 +02:00
parent ff336235f9
commit 9083074662

View File

@ -89,7 +89,7 @@ int main(void) {
}
int isInBound(const cell *c) {
if (c -> x >= 0 && c -> x <= 13 && c -> y >= 0 && c -> y <= 13) {
if (c -> x >= 0 && c -> x <= 12 && c -> y >= 0 && c -> y <= 12) {
return 1;
}
return 0;