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);