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();
}
}
-static void
+void
Curses_ShowPrompt(void)
{
Curses_ShowSidetoMove();
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);