X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fio.c;h=48f2e3876266a13dce90226a111656ba74f280c3;hb=d5b31ded06283b5ae9788716c7753108d23b777c;hp=30908e63fee269a2a8803f45908748a07bee5fd1;hpb=e3730bb826efe601fe51626aab064d395733d4c3;p=super-star-trek.git diff --git a/src/io.c b/src/io.c index 30908e6..48f2e38 100644 --- a/src/io.c +++ b/src/io.c @@ -1,16 +1,19 @@ #include #include -#include -#include -#include -#include +#include "config.h" #include "sst.h" #include "sstlinux.h" static int rows, linecount; /* for paging */ WINDOW *curwnd; +WINDOW *fullscreen_window; +WINDOW *srscan_window; +WINDOW *report_window; +WINDOW *lrscan_window; +WINDOW *message_window; +WINDOW *prompt_window; static void outro(void) /* wrap up, either normally or due to signal */ @@ -28,6 +31,11 @@ static void outro(void) void iostart(void) { + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); + gettext(""); + if (!(game.options & OPTION_CURSES)) { rows = atoi(getenv("LINES")); } else { @@ -295,7 +303,7 @@ void highvideo (void) } } -void commandhook(char *cmd, int before) { +void commandhook(char *cmd, bool before) { } /* @@ -422,7 +430,7 @@ void makechart(void) void setpassword(void) { if (!(game.options & OPTION_CURSES)) { - while (TRUE) { + for (;;) { scan(); strcpy(game.passwd, citem); chew();