From 4657fa333b7f33709b6c817211bbd6bd581e7de0 Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Sun, 16 Feb 2014 15:31:45 +0100 Subject: [PATCH] Curses: fix inverted column numbers display for minishogi. --- NEWS | 1 + gnushogi/cursesdsp.c | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/NEWS b/NEWS index d709703..57a4994 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,7 @@ Changes in version 1.4.2 (unreleased): * XShogi is no longer included in the GNU Shogi source, it is available as a separate source archive. +* Fixed display of column number for MiniShogi in Curses mode. * Minor code cleanups. Changes in version 1.4.1 (01/2014): diff --git a/gnushogi/cursesdsp.c b/gnushogi/cursesdsp.c index 4e8bf64..205b749 100644 --- a/gnushogi/cursesdsp.c +++ b/gnushogi/cursesdsp.c @@ -880,7 +880,7 @@ Curses_UpdateDisplay(short f, short t, short redraw, short isspec) if (flag.reverse) printw(" 1 2 3 4 5"); else - printw(" 1 2 3 4 5"); + printw(" 5 4 3 2 1"); #endif for (sq = 0; sq < NO_SQUARES; sq++) -- 1.7.0.4