Use correct wipe pixel color
1 files changed, 1 insertions(+), 1 deletions(-) M src/devices/ppu.c
M src/devices/ppu.c => src/devices/ppu.c +1 -1
@@ 63,7 63,7 @@ screen_wipe(Ppu *p, uint8_t fg, uint16_t x, uint16_t y) int v, h; for(v = 0; v < 8; v++) for(h = 0; h < 8; h++) - ppu_pixel(p, fg, x + h, y + v, 1); + ppu_pixel(p, fg, x + h, y + v, 0); } void