diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-23 01:11:13 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-23 01:11:13 +0100 |
commit | d4dcfd81f2332bcb766d4c7de257bcc848faf494 (patch) | |
tree | f34ca5c6a86995148022d8e54fe92f8a089038b1 /config.h | |
parent | Feature: Implemented reload and exit key behaviour (diff) | |
download | CHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.tar.gz CHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.tar.bz2 CHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.zip |
Feature: Implemented background and foreround color customizability
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h b/config.h index 07f52e8..1656026 100644 --- a/config.h +++ b/config.h @@ -11,6 +11,9 @@ #define GAME_LOAD_LOCATION 0x200 #define FONT_LOAD_LOCATION 0x50 +#define FOREGROUND_COLOR 0x00FFFFFF +#define BLACKGROUND_COLOR 0xFF000000 + #define dbgprintf(fmt, ...) \ do { if(DEBUG) fprintf (stdout, fmt, ##__VA_ARGS__); } while(0) |