diff options
Diffstat (limited to 'src/mame/includes/gomoku.h')
-rw-r--r-- | src/mame/includes/gomoku.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/gomoku.h b/src/mame/includes/gomoku.h index 12a9d53d84e..375a08f7f5c 100644 --- a/src/mame/includes/gomoku.h +++ b/src/mame/includes/gomoku.h @@ -4,7 +4,7 @@ class gomoku_state : public driver_device { public: - gomoku_state(const machine_config &mconfig, device_type type, std::string tag) + gomoku_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_videoram(*this, "videoram"), m_colorram(*this, "colorram"), @@ -68,7 +68,7 @@ class gomoku_sound_device : public device_t, public device_sound_interface { public: - gomoku_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + gomoku_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); ~gomoku_sound_device() { } protected: |