1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-22 16:03:03 +01:00

Zero-init coordinates

Not strictly necessary, but makes static analysis happy
This commit is contained in:
jfreegman 2021-12-10 13:09:47 -05:00
parent da90ca8b74
commit 2946e0dc56
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -436,7 +436,11 @@ static bool chess_path_line_clear(Board *board, const Tile *from, const Tile *to
return false;
}
ChessCoords chess_coords;
ChessCoords chess_coords = (ChessCoords) {
0,
0
};
size_t start;
size_t end;