diff options
| -rw-r--r-- | FICS/movecheck.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/movecheck.c b/FICS/movecheck.c index 3954f42..5d71182 100644 --- a/FICS/movecheck.c +++ b/FICS/movecheck.c @@ -39,6 +39,7 @@ #include "board.h" #include "common.h" #include "gamedb.h" +#include "maxxes-utils.h" #include "movecheck.h" #include "network.h" #include "playerdb.h" @@ -860,7 +861,7 @@ move_calculate(game_state_t *gs, move_t *mt, int promote) } // Replace this with an algabraic de-parser - snprintf(mt->algString, sizeof mt->algString, "%s", + msnprintf(mt->algString, sizeof mt->algString, "%s", alg_unparse(gs, mt)); fakeMove = *gs; execute_move(&fakeMove, mt, 0); // Calculates enPassant also |
