From 35748cbc0a7747d94b9c6c1e5d675b7a2c58320f Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Wed, 16 Oct 2013 00:28:44 +0200 Subject: [PATCH] When in check, complain with the requested move. Looks like in xshogi mode we were complaining by explicitly using the algebraic notation, but apparently noone forces us to do so. --- gnushogi/commondsp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gnushogi/commondsp.c b/gnushogi/commondsp.c index ea38293..157d852 100644 --- a/gnushogi/commondsp.c +++ b/gnushogi/commondsp.c @@ -302,7 +302,7 @@ VerifyMove(char *s, VerifyMove_mode iop, unsigned short *mv) if (NOT_CURSES) { /* Illegal move in check */ - printf(CP[77], mvstr[0]); + printf(CP[77], s); printf("\n"); } else -- 1.7.0.4