diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-17 15:43:20 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-17 15:43:20 -0700 |
commit | 66e9ade3dc32f118d6d9229b709c4cd389f9162e (patch) | |
tree | 2659f5f5b51c887c3efba5bbffbc83030701299d /vdp.c | |
parent | a629ad5a0a5f1325d528f335501922dc423acf03 (diff) |
Fix VDP status register PAL bit based on observations of the Titan Overdrive demo
Diffstat (limited to 'vdp.c')
-rw-r--r-- | vdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1757,7 +1757,7 @@ uint16_t vdp_control_port_read(vdp_context * context) if (context->flags & FLAG_DMA_RUN) { value |= 0x2; } - if (context->latched_mode & BIT_PAL) {//Not sure about this, need to verify + if (context->flags2 & FLAG2_REGION_PAL) { value |= 0x1; } //printf("status read at cycle %d returned %X\n", context->cycles, value); |