diff options
author | 2012-11-26 16:04:41 +0000 | |
---|---|---|
committer | 2012-11-26 16:04:41 +0000 | |
commit | abbfd858eafb54a8da936e66518e52f08be6342a (patch) | |
tree | ba7d106bc8e02d3968d2312510294d3fe4edbe95 /src/mess/drivers/dolphunk.c | |
parent | e8b103c2cbfb780f2c56aa6483fbee9e3990311a (diff) |
Replaced all device_t's with actual device classes. Regression test recommended. (nw)
Diffstat (limited to 'src/mess/drivers/dolphunk.c')
-rw-r--r-- | src/mess/drivers/dolphunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/dolphunk.c b/src/mess/drivers/dolphunk.c index 80b6e466390..17ea9c4875d 100644 --- a/src/mess/drivers/dolphunk.c +++ b/src/mess/drivers/dolphunk.c @@ -91,7 +91,7 @@ public: UINT8 m_last_key; bool m_speaker_state; required_device<cpu_device> m_maincpu; - required_device<device_t> m_speaker; + required_device<speaker_sound_device> m_speaker; }; WRITE8_MEMBER( dolphunk_state::port00_w ) |