diff options
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r-- | src/mame/machine/tigeroad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/tigeroad.cpp b/src/mame/machine/tigeroad.cpp index f142cf3c523..d19b4e11dba 100644 --- a/src/mame/machine/tigeroad.cpp +++ b/src/mame/machine/tigeroad.cpp @@ -113,7 +113,7 @@ void tigeroad_state::f1dream_protection_w(address_space &space) else if ((prevpc == 0x27f8) || (prevpc == 0x511a) || (prevpc == 0x5142) || (prevpc == 0x516a)) { /* The main CPU stuffs the byte for the soundlatch into 0xfffffd.*/ - soundlatch_byte_w(space,2,m_ram16[0x3ffc/2]); + m_soundlatch->write(space,2,m_ram16[0x3ffc/2]); } } |