summaryrefslogtreecommitdiff
path: root/src/video/ncurses.c
diff options
context:
space:
mode:
authoralekseiplusplus <alekseijeaves@protonmail.com>2023-12-08 11:48:26 +1100
committeralekseiplusplus <alekseijeaves@protonmail.com>2023-12-08 11:48:26 +1100
commit8968f471650d25c9df68347644e0e5c0ecdbda6e (patch)
tree2a85cf00b0b1b168a24a1f408d203b5517949a69 /src/video/ncurses.c
parentd28ad56810b43cb3ea5d11e5e32042f69ee04562 (diff)
minor commit
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);