textcolor() is now available in the text input manager.
[super-star-trek.git] / io.c
diff --git a/io.c b/io.c
index 2e66d36f10ec197929d3fbcdd47fd3478de4aacf..f4ed854e99e215c1f677b559d54e6321ec6873da 100644 (file)
--- a/io.c
+++ b/io.c
@@ -286,6 +286,23 @@ void prouts(char *fmt, ...) {
 #endif /* SERGEEV */
 }
 
+void warble(void)
+{
+#ifdef SERGEEV
+    int posx, posy;
+    posx=wherex();
+    posy=wherey();
+    drawmaps(1);
+    setwnd(4);
+    gotoxy(posx,posy);
+    sound(50);
+    delay(1000);
+    nosound();
+#else
+    prouts(" . . . . . ");
+#endif /* SERGEEV */
+}
+
 void getline(char *line, int max) {
     if (curses) {
 #ifndef SERGEEV