diff options
Diffstat (limited to 'src/devices/video/stvvdp2.cpp')
-rw-r--r-- | src/devices/video/stvvdp2.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/stvvdp2.cpp b/src/devices/video/stvvdp2.cpp index 79280ee5852..6e78b89bef3 100644 --- a/src/devices/video/stvvdp2.cpp +++ b/src/devices/video/stvvdp2.cpp @@ -5717,7 +5717,7 @@ READ16_MEMBER ( saturn_state::saturn_vdp2_regs_r ) /* latch h/v signals through HV latch*/ if(!STV_VDP2_EXLTEN) { - if(!machine().debugger_access()) + if(!space.debugger_access()) { m_vdp2.h_count = get_hcounter(); m_vdp2.v_count = get_vcounter(); @@ -5744,7 +5744,7 @@ READ16_MEMBER ( saturn_state::saturn_vdp2_regs_r ) m_vdp2_regs[offset] |= 1 << 3; /* HV latches clears if this register is read */ - if(!machine().debugger_access()) + if(!space.debugger_access()) { m_vdp2.exltfg &= ~1; m_vdp2.exsyfg &= ~1; @@ -5758,7 +5758,7 @@ READ16_MEMBER ( saturn_state::saturn_vdp2_regs_r ) /* Games basically r/w the entire VDP2 register area when this is tripped. (example: Silhouette Mirage) Disable log for the time being. */ - //if(!machine().debugger_access()) + //if(!space.debugger_access()) // printf("Warning: VDP2 version read\n"); break; } @@ -5778,7 +5778,7 @@ READ16_MEMBER ( saturn_state::saturn_vdp2_regs_r ) } default: - //if(!machine().debugger_access()) + //if(!space.debugger_access()) // printf("VDP2: read from register %08x %08x\n",offset*4,mem_mask); break; } |