Fix overwriting DISPSTAT with fixed values for the lower bits
Jeffrey Pfau jeffrey@endrift.com
Wed, 16 Oct 2013 22:23:32 -0700
1 files changed,
1 insertions(+),
0 deletions(-)
jump to
M
src/gba/gba-io.c
→
src/gba/gba-io.c
@@ -15,6 +15,7 @@ } else {
switch (address) { // Video case REG_DISPSTAT: + value &= 0xFFF8; GBAVideoWriteDISPSTAT(&gba->video, value); break;