summaryrefslogtreecommitdiff
path: root/src/Screen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screen.cpp')
-rw-r--r--src/Screen.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Screen.cpp b/src/Screen.cpp
index c3977d6..40a31d1 100644
--- a/src/Screen.cpp
+++ b/src/Screen.cpp
@@ -9,6 +9,9 @@ Screen::Screen()
keypad(stdscr,TRUE);
curs_set(0);
getmaxyx(stdscr,height,width);
+
+ start_color();
+ init_pair(1, COLOR_GREEN, COLOR_RED);
}
Screen::~Screen()