summaryrefslogtreecommitdiffstats
path: root/src/mess/drivers/pyl601.c
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2012-11-26 16:04:41 +0000
committer Curt Coder <curtcoder@mail.com>2012-11-26 16:04:41 +0000
commitabbfd858eafb54a8da936e66518e52f08be6342a (patch)
treeba7d106bc8e02d3968d2312510294d3fe4edbe95 /src/mess/drivers/pyl601.c
parente8b103c2cbfb780f2c56aa6483fbee9e3990311a (diff)
Replaced all device_t's with actual device classes. Regression test recommended. (nw)
Diffstat (limited to 'src/mess/drivers/pyl601.c')
-rw-r--r--src/mess/drivers/pyl601.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/pyl601.c b/src/mess/drivers/pyl601.c
index 948855a5524..067eb3cd522 100644
--- a/src/mess/drivers/pyl601.c
+++ b/src/mess/drivers/pyl601.c
@@ -77,7 +77,7 @@ public:
DECLARE_WRITE8_MEMBER(floppy_w);
DECLARE_READ8_MEMBER(floppy_r);
UINT8 selectedline(UINT16 data);
- required_device<device_t> m_speaker;
+ required_device<speaker_sound_device> m_speaker;
required_device<upd765a_device> m_fdc;
required_device<ram_device> m_ram;
DECLARE_DRIVER_INIT(pyl601);