We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c33593 commit 4cd3829Copy full SHA for 4cd3829
graphics.c
@@ -37,8 +37,8 @@ int SCROLL[8], OLDSCROLL[8];
37
unsigned char *vptr; /* real screen buffer */
38
unsigned char *vbuffer; /* virtual screen buffer */
39
/* MZ800 colors */
40
-int mzcolors[16] = {0x000000, 0x000020, 0x002000, 0x002020,
41
- 0x200000, 0x200020, 0x202000, 0x2a2a2a,
+int mzcolors[16] = {0x000000, 0x000030, 0x003000, 0x003030,
+ 0x300000, 0x300030, 0x303000, 0x303030,
42
0x151515, 0x00003f, 0x003f00, 0x003f3f,
43
0x3f0000, 0x3f003f, 0x3f3f00, 0x3f3f3f};
44
int mzgrays[16] = {0x000000, 0x040404, 0x080808, 0x0c0c0c,
@@ -222,7 +222,7 @@ void update_RF(int a)
222
#define SW (SCROLL[3])
223
#define SSA (SCROLL[4])
224
#define SEA (SCROLL[5])
225
-#define BCOL (SCROLL[6])
+/* #define BCOL (SCROLL[6]) */
226
#define CKSW (SCROLL[7])
227
228
#define OSOF1 (OLDSCROLL[1])
graphics.h
@@ -23,6 +23,7 @@ extern int directvideo;
23
extern int mzbpl;
24
extern int DMD, RF, WF;
25
extern int SCROLL[8];
26
+#define BCOL (SCROLL[6])
27
extern unsigned char *vptr; /* real screen buffer */
28
extern unsigned char *vbuffer; /* virtual screen buffer */
29
extern unsigned char *readptr;
0 commit comments