git.y1.nz

SameBoy

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

commit 5088bd095901a696fdabcd19952d7cd64f9b344d
parent eaeeb4961296261d89876bd06451a73b82429778
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sun, 16 Jan 2022 00:16:06 +0200

Redundant OR

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

diff --git a/Core/display.c b/Core/display.c @@ -1611,7 +1611,7 @@ void GB_display_run(GB_gameboy_t *gb, unsigned cycles, bool force) goto abort_fetching_object; } - if (unlikely(GB_is_dma_active(gb) || gb->dma_current_src == 0xFF)) { + if (unlikely(GB_is_dma_active(gb))) { unsigned offset = cycles - gb->display_cycles; // Time passed in 8MHz ticks if (offset) { if (!gb->cgb_double_speed) {

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