diff options
Diffstat (limited to 'src/mess/includes/p2000t.h')
-rw-r--r-- | src/mess/includes/p2000t.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/includes/p2000t.h b/src/mess/includes/p2000t.h index 4c2ab2c47f9..a40c3029b21 100644 --- a/src/mess/includes/p2000t.h +++ b/src/mess/includes/p2000t.h @@ -18,9 +18,9 @@ class p2000t_state : public driver_device public: p2000t_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), - m_maincpu(*this, "maincpu"), - m_speaker(*this, SPEAKER_TAG), - m_videoram(*this, "videoram") + m_maincpu(*this, "maincpu"), + m_speaker(*this, SPEAKER_TAG), + m_videoram(*this, "videoram") { } required_device<cpu_device> m_maincpu; |