Re-enabled green curses console color

git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@44 64f78de7-aa59-e511-a0e8-0002a5492df0
This commit is contained in:
Daniel Loffgren 2015-09-19 07:40:18 +00:00
parent 581c3824d6
commit addb0d97a7
1 changed files with 3 additions and 0 deletions

View File

@ -165,6 +165,9 @@ void pia_start(a1pia *pia) {
pia->signalled = 0;
pia->suspended = 0;
wrefresh(pia->screen);
start_color();
init_pair(1, COLOR_GREEN, COLOR_BLACK);
attron(COLOR_PAIR(1) | A_BOLD);
}
void pia_stop(a1pia *pia) {