about summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index e528a69..449efda 100644
--- a/main.c
+++ b/main.c
@@ -65,7 +65,7 @@ int main(int argc, char** argv)
                 for(int h = 0; h < 32; ++h)
                 {
                     uint8_t pixel = emulator.display[w][h];
-                    pixels[64 * h + w] = (0x00FFFFFF * pixel) | 0xFF000000; //TODO: make colors customizable in config.h
+                    pixels[64 * h + w] = (FOREGROUND_COLOR * pixel) | BLACKGROUND_COLOR;
                 }
             }