summaryrefslogtreecommitdiff
path: root/src/video/ncurses.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/ncurses.c')
-rw-r--r--src/video/ncurses.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/video/ncurses.c b/src/video/ncurses.c
index e9be9b2..3b22231 100644
--- a/src/video/ncurses.c
+++ b/src/video/ncurses.c
@@ -8,17 +8,14 @@
#include"../cpu/6502.h"
-int TermX = 0;
-int TermY = 0;
+int TermX = 0;
+int TermY = 0;
WINDOW *AppleWindow;
-
byte* VRAM;
-
-int vPosition = 0;
-
-int vOffset = 0;
+int vPosition = 0;
+int vOffset = 0;
void PrintInfo()
@@ -69,11 +66,11 @@ void DisplayInit()
mvaddch(i, 0, ' ');
mvaddch(i, 41, ' ');
}
- mvprintw(25, 0, " ~ ");
- mvprintw(26, 0, " Alekseis Apple I ");
- mvprintw(27, 0, " ");
+ mvprintw(25, 0, " ");
attroff(A_REVERSE);
+
+
// Create seperate Apple screen window.
AppleWindow = newwin(24, 40, 1, 1);