summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/travrusa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/travrusa.cpp')
-rw-r--r--src/mame/drivers/travrusa.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/travrusa.cpp b/src/mame/drivers/travrusa.cpp
index fff5add9418..4b41aa7feb9 100644
--- a/src/mame/drivers/travrusa.cpp
+++ b/src/mame/drivers/travrusa.cpp
@@ -598,7 +598,7 @@ void travrusa_state::init_shtridra()
rom[A] = bitswap<8>(rom[A],7,5,6,3,4,2,1,0);
}
-READ8_MEMBER(travrusa_state::shtridrb_port11_r)
+uint8_t travrusa_state::shtridrb_port11_r()
{
printf("shtridrb_port11_r %04x\n", m_maincpu->pc());
// reads, masks with 0xa8, checks for 0x88, resets game if not happy with value?
@@ -608,7 +608,7 @@ READ8_MEMBER(travrusa_state::shtridrb_port11_r)
void travrusa_state::init_shtridrb()
{
- m_maincpu->space(AS_IO).install_read_handler(0x11, 0x11, 0, 0xff00, 0, read8_delegate(*this, FUNC(travrusa_state::shtridrb_port11_r)));
+ m_maincpu->space(AS_IO).install_read_handler(0x11, 0x11, 0, 0xff00, 0, read8smo_delegate(*this, FUNC(travrusa_state::shtridrb_port11_r)));
}