mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
itech/capbowl.cpp: Add machine().side_effects_disabled() check for debug (#12236)
This commit is contained in:
parent
c5c8474c6f
commit
15e56ea331
@ -309,7 +309,8 @@ uint8_t bowlrama_state::blitter_r(offs_t offset)
|
||||
// Read data and increment address
|
||||
case 4:
|
||||
result = data;
|
||||
m_blitter_addr = (m_blitter_addr + 1) & 0x3ffff;
|
||||
if (!machine().side_effects_disabled())
|
||||
m_blitter_addr = (m_blitter_addr + 1) & 0x3ffff;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user