Imprive documentation, fix a typo, add the hacking guide.
[super-star-trek.git] / src / io.c
index 4571db2c3821d9ba6875705c9d6c8dec14b1e51c..416649f9d6b2f667e39d99e233fe5babb544a53a 100644 (file)
--- a/src/io.c
+++ b/src/io.c
@@ -86,16 +86,13 @@ void waitfor(void)
 /* wait for user action -- OK to do nothing if on a TTY */
 {
     if (game.options & OPTION_CURSES)
-       getch();
+       wgetch(prompt_window);
 }
 
 void announce(void)
 {
     skip(1);
-    if (game.skill > SKILL_FAIR)
-       prouts(_("[ANOUNCEMENT ARRIVING...]"));
-    else
-       prouts(_("[IMPORTANT ANNOUNCEMENT ARRIVING -- PRESS ENTER TO CONTINUE]"));
+    prouts(_("[ANNOUNCEMENT ARRIVING...]"));
     skip(1);
 }