all repos — mgba @ 17dac6486b4b0f20455548db1f55f37cc068f19e

mGBA Game Boy Advance Emulator

GBA Video: Don't mask out high bits of BLDY (fixes #899)
Vicki Pfau vi@endrift.com
Wed, 11 Oct 2017 09:13:43 -0700
commit

17dac6486b4b0f20455548db1f55f37cc068f19e

parent

66ce1063d419624c5829a151b320faa9510ff6c1

1 files changed, 0 insertions(+), 1 deletions(-)

jump to
M src/gba/renderers/video-software.csrc/gba/renderers/video-software.c

@@ -295,7 +295,6 @@ }

value &= 0x1F1F; break; case REG_BLDY: - value &= 0x1F; if (value > 0x10) { value = 0x10; }