From 66e9ade3dc32f118d6d9229b709c4cd389f9162e Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sun, 17 May 2015 15:43:20 -0700 Subject: Fix VDP status register PAL bit based on observations of the Titan Overdrive demo --- vdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vdp.c') diff --git a/vdp.c b/vdp.c index 73ca200..70784dc 100644 --- a/vdp.c +++ b/vdp.c @@ -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); -- cgit v1.2.3