From abbfd858eafb54a8da936e66518e52f08be6342a Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Mon, 26 Nov 2012 16:04:41 +0000 Subject: Replaced all device_t's with actual device classes. Regression test recommended. (nw) --- src/mess/drivers/unixpc.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/mess/drivers/unixpc.c') diff --git a/src/mess/drivers/unixpc.c b/src/mess/drivers/unixpc.c index 6dde44c566f..80d7753676c 100644 --- a/src/mess/drivers/unixpc.c +++ b/src/mess/drivers/unixpc.c @@ -30,15 +30,14 @@ public: m_maincpu(*this, "maincpu"), m_ram(*this, RAM_TAG), m_wd2797(*this, "wd2797"), - m_floppy(*this, FLOPPY_0) - , - m_mapram(*this, "mapram"), - m_videoram(*this, "videoram"){ } + m_floppy(*this, FLOPPY_0), + m_mapram(*this, "mapram"), + m_videoram(*this, "videoram"){ } required_device m_maincpu; required_device m_ram; - required_device m_wd2797; - required_device m_floppy; + required_device m_wd2797; + required_device m_floppy; UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); -- cgit v1.2.3