mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 21:23:01 +01:00
Zero-init coordinates
Not strictly necessary, but makes static analysis happy
This commit is contained in:
parent
da90ca8b74
commit
2946e0dc56
@ -436,7 +436,11 @@ static bool chess_path_line_clear(Board *board, const Tile *from, const Tile *to
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ChessCoords chess_coords;
|
ChessCoords chess_coords = (ChessCoords) {
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
size_t start;
|
size_t start;
|
||||||
size_t end;
|
size_t end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user