Fix build of --with-curses mode.
authorYann Dirson <ydirson@free.fr>
Sat, 19 Oct 2013 20:02:52 +0000 (22:02 +0200)
committerYann Dirson <ydirson@free.fr>
Sat, 19 Oct 2013 20:02:52 +0000 (22:02 +0200)
Broken by 6030715dffdadf4402dccf6a8bf9966cfab2be1d and not checked soon enough :(

gnushogi/cursesdsp.c
gnushogi/gnushogi.h

index 7b37fc6..412bdc0 100644 (file)
@@ -98,17 +98,17 @@ Curses_ClearScreen(void)
 
 
 static void
-ClearMessage(void)
+gotoXY(short x, short y)
 {
-    gotoXY(TAB, 6);
-    ClearEoln();
+    move(y - 1, x - 1);
 }
 
 
 static void
-gotoXY(short x, short y)
+ClearMessage(void)
 {
-    move(y - 1, x - 1);
+    gotoXY(TAB, 6);
+    ClearEoln();
 }
 
 
@@ -239,7 +239,7 @@ ShowPlayers(void)
 }
 
 
-static void
+void
 Curses_ShowPrompt(void)
 {
     Curses_ShowSidetoMove();
index 52a77ae..2640a21 100644 (file)
@@ -1047,7 +1047,6 @@ extern void  ShowCurrentMove(short pnt, short f, short t);
 extern void  ListGame(void);
 extern void  ShowMessage(char *s);
 extern void  ClearScreen(void);
-extern void  UpdateClocks(void);
 extern void  DoDebug(void);
 extern void  DoTable(short table[NO_SQUARES]);
 extern void  ShowPostnValues(void);