git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 96736fe7c51961b14a8c49764d2588c0f7c8a232
parent c496797fce8169764e0c2d3ae15d367272589df7
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sat,  9 Jan 2021 00:59:12 +0200

Fix false positives in odd-mode detection

Diffstat:
MCore/memory.c1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Core/memory.c b/Core/memory.c @@ -905,6 +905,7 @@ static void write_high_memory(GB_gameboy_t *gb, uint16_t addr, uint8_t value) } else if (!(value & 0x80) && (gb->io_registers[GB_IO_LCDC] & 0x80)) { /* Sync after turning off LCD */ + gb->double_speed_alignment = 0; GB_timing_sync(gb); GB_lcd_off(gb); }

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.