about summary refs log tree commit diff stats
path: root/console_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'console_win.c')
-rw-r--r--console_win.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/console_win.c b/console_win.c
deleted file mode 100644
index b303d0e3..00000000
--- a/console_win.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <ncurses.h>
-#include "windows.h"
-
-static WINDOW *cons_win;
-
-void create_console_window(void)
-{
-    int rows, cols;
-    getmaxyx(stdscr, rows, cols);
-
-    cons_win = newwin(rows-3, cols, 1, 0);
-    scrollok(cons_win, TRUE);
-
-    waddstr(cons_win, "Welcome to Profanity.\n");
-    touchwin(cons_win);
-    wrefresh(cons_win);
-}
-