diff options
Diffstat (limited to 'src/mame/includes/pc8001.h')
-rw-r--r-- | src/mame/includes/pc8001.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/pc8001.h b/src/mame/includes/pc8001.h index 5d708f6129c..76d3bafb529 100644 --- a/src/mame/includes/pc8001.h +++ b/src/mame/includes/pc8001.h @@ -31,7 +31,7 @@ class pc8001_state : public driver_device { public: - pc8001_state(const machine_config &mconfig, device_type type, std::string tag) + pc8001_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_maincpu(*this, Z80_TAG), m_rtc(*this, UPD1990A_TAG), @@ -82,7 +82,7 @@ public: class pc8001mk2_state : public pc8001_state { public: - pc8001mk2_state(const machine_config &mconfig, device_type type, std::string tag) + pc8001mk2_state(const machine_config &mconfig, device_type type, const char *tag) : pc8001_state(mconfig, type, tag), m_kanji_rom(*this, "kanji") { } |