diff options
Diffstat (limited to 'src/mame/drivers/oric.cpp')
-rw-r--r-- | src/mame/drivers/oric.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/oric.cpp b/src/mame/drivers/oric.cpp index 69dff49397b..2ba373f66e3 100644 --- a/src/mame/drivers/oric.cpp +++ b/src/mame/drivers/oric.cpp @@ -46,7 +46,7 @@ public: LATTR_BLINK = 0x04 }; - oric_state(const machine_config &mconfig, device_type type, const char *tag) + oric_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_palette(*this, "palette"), @@ -114,7 +114,7 @@ protected: class telestrat_state : public oric_state { public: - telestrat_state(const machine_config &mconfig, device_type type, const char *tag) : + telestrat_state(const machine_config &mconfig, device_type type, std::string tag) : oric_state(mconfig, type, tag), m_via2(*this, "via6522_2"), m_fdc(*this, "fdc"), |