git.y1.nz

SameBoy

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

commit c730ba767bcd28d76fdc092b9fc8cbd37198930e
parent f8a105e8d01543b295bbd7893ef01140e61b77f1
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Mon,  7 Feb 2022 00:21:45 +0200

Not sure where I've got that 0 from

Diffstat:
MCore/memory.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Core/memory.c b/Core/memory.c @@ -1717,7 +1717,7 @@ void GB_dma_run(GB_gameboy_t *gb) } else { if (GB_is_cgb(gb)) { - gb->oam[gb->dma_current_dest++] = 0; + gb->oam[gb->dma_current_dest++] = 0xFF; } else { gb->oam[gb->dma_current_dest++] = GB_read_memory(gb, gb->dma_current_src & ~0x2000);

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