mirror of https://github.com/bsnes-emu/bsnes.git
KEY1 is only writable in CGB mode; screen should be black is LCD is on while in stop mode.
This commit is contained in:
parent
c0a8a570e8
commit
7df4e56454
|
@ -204,10 +204,12 @@ static void display_vblank(GB_gameboy_t *gb)
|
|||
}
|
||||
|
||||
if (!gb->disable_rendering && ((!(gb->io_registers[GB_IO_LCDC] & 0x80) || gb->stopped) || gb->frame_skip_state == GB_FRAMESKIP_LCD_TURNED_ON)) {
|
||||
/* LCD is off, set screen to white */
|
||||
uint32_t white = gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
||||
/* LCD is off, set screen to white or black (if LCD is on in stop mode) */
|
||||
uint32_t color = (gb->io_registers[GB_IO_LCDC] & 0x80) && gb->stopped ?
|
||||
gb->rgb_encode_callback(gb, 0, 0, 0) :
|
||||
gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
||||
for (unsigned i = 0; i < WIDTH * LINES; i++) {
|
||||
gb ->screen[i] = white;
|
||||
gb ->screen[i] = color;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -558,7 +558,7 @@ static void write_high_memory(GB_gameboy_t *gb, uint16_t addr, uint8_t value)
|
|||
}
|
||||
return;
|
||||
case GB_IO_KEY1:
|
||||
if (!gb->is_cgb) {
|
||||
if (!gb->cgb_mode) {
|
||||
return;
|
||||
}
|
||||
gb->io_registers[GB_IO_KEY1] = value;
|
||||
|
|
Loading…
Reference in New Issue