diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-03-16 21:27:04 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-03-16 21:27:04 +0100 |
commit | 1ce66140f254f6688db6cffc20eec509b3793a96 (patch) | |
tree | bb8ec17fdd8fcd42efbfa574760f599cbf3713a7 /FICS | |
parent | 475939b51ef3814d15a25ab39a335700fb3acc32 (diff) |
Reformatted possible_queen_moves()
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/movecheck.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/movecheck.c b/FICS/movecheck.c index 9b7cd9e..50fa7c8 100644 --- a/FICS/movecheck.c +++ b/FICS/movecheck.c @@ -544,12 +544,12 @@ PRIVATE void possible_rook_moves(game_state_t * gs, } } -PRIVATE void possible_queen_moves(game_state_t * gs, - int onf, int onr, - int *posf, int *posr, int *numpos) +PRIVATE void +possible_queen_moves(game_state_t *gs, int onf, int onr, int *posf, int *posr, + int *numpos) { - possible_rook_moves(gs, onf, onr, posf, posr, numpos); - possible_bishop_moves(gs, onf, onr, posf, posr, numpos); + possible_rook_moves(gs, onf, onr, posf, posr, numpos); + possible_bishop_moves(gs, onf, onr, posf, posr, numpos); } PRIVATE void |