summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lynx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lynx.cpp')
-rw-r--r--src/mame/drivers/lynx.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/lynx.cpp b/src/mame/drivers/lynx.cpp
index a5f71e1a7aa..272587ffcaa 100644
--- a/src/mame/drivers/lynx.cpp
+++ b/src/mame/drivers/lynx.cpp
@@ -98,15 +98,15 @@ void lynx_state::lynx(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
LYNX_SND(config, m_sound, 0);
- m_sound->set_timer_delegate(FUNC(lynx_state::sound_cb), this);
+ m_sound->set_timer_delegate(FUNC(lynx_state::sound_cb));
m_sound->add_route(ALL_OUTPUTS, "mono", 0.50);
/* devices */
- QUICKLOAD(config, "quickload", "o").set_load_callback(FUNC(lynx_state::quickload_cb), this);
+ QUICKLOAD(config, "quickload", "o").set_load_callback(FUNC(lynx_state::quickload_cb));
generic_cartslot_device &cartslot(GENERIC_CARTSLOT(config, "cartslot", generic_plain_slot, "lynx_cart", "lnx,lyx"));
cartslot.set_must_be_loaded(true);
- cartslot.set_device_load(FUNC(lynx_state::cart_load), this);
+ cartslot.set_device_load(FUNC(lynx_state::cart_load));
/* Software lists */
SOFTWARE_LIST(config, "cart_list").set_original("lynx");
@@ -123,7 +123,7 @@ void lynx_state::lynx2(machine_config &config)
SPEAKER(config, "rspeaker").front_right();
config.device_remove("lynx");
LYNX2_SND(config.replace(), m_sound, 0);
- m_sound->set_timer_delegate(FUNC(lynx_state::sound_cb), this);
+ m_sound->set_timer_delegate(FUNC(lynx_state::sound_cb));
m_sound->add_route(0, "lspeaker", 0.50);
m_sound->add_route(1, "rspeaker", 0.50);
}