summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/chess.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/chess.c b/mbbsd/chess.c
index c59f4099..2f7aaa96 100644
--- a/mbbsd/chess.c
+++ b/mbbsd/chess.c
@@ -473,7 +473,8 @@ ChessPlayFuncWatch(ChessInfo* info)
info->actions->init_board(info, info->board);
info->current_step = 0;
- ChessReplayUntil(info, current - 1);
+ if (current > 1)
+ ChessReplayUntil(info, current - 1);
ChessRedraw(info);
}
break;