Curses: fix inverted column numbers display for minishogi.
authorYann Dirson <ydirson@free.fr>
Sun, 16 Feb 2014 14:31:45 +0000 (15:31 +0100)
committerYann Dirson <ydirson@free.fr>
Sun, 16 Feb 2014 15:09:59 +0000 (16:09 +0100)
NEWS
gnushogi/cursesdsp.c

diff --git a/NEWS b/NEWS
index d709703..57a4994 100644 (file)
--- 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):
index 4e8bf64..205b749 100644 (file)
@@ -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++)