From 5b417c243183cd2bcae19adb9eda7f5da9b276d5 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Sat, 6 Jan 2024 18:43:17 -0600 Subject: [PATCH] Boom. --- f256lib/bitmap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/f256lib/bitmap.c b/f256lib/bitmap.c index bc9c8fb..9f4de25 100644 --- a/f256lib/bitmap.c +++ b/f256lib/bitmap.c @@ -162,9 +162,11 @@ void bitmapReset(void) { _BITMAP_BASE[1] = _BITMAP_BASE[0] + realSize; // Page 2 = 0x24000 _BITMAP_BASE[2] = _BITMAP_BASE[1] + realSize; // Page 3 = 0x38000 + /* print("\nbase0 = "); printInt(_BITMAP_BASE[0]); print("\nbase1 = "); printInt(_BITMAP_BASE[1]); print("\nbase2 = "); printInt(_BITMAP_BASE[2]); + */ // Set palette to a gradient so there's at least *something*. for (x=0; x<256; x++) bitmapDefineColor(x, x, x, x);