summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vboy/rom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vboy/rom.h')
-rw-r--r--src/devices/bus/vboy/rom.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/vboy/rom.h b/src/devices/bus/vboy/rom.h
index 5da06ed726d..9ced7b51296 100644
--- a/src/devices/bus/vboy/rom.h
+++ b/src/devices/bus/vboy/rom.h
@@ -13,8 +13,8 @@ class vboy_rom_device : public device_t,
{
public:
// construction/destruction
- vboy_rom_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
- vboy_rom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ vboy_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ vboy_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// device-level overrides
virtual void device_start() override {}
@@ -29,7 +29,7 @@ class vboy_eeprom_device : public vboy_rom_device
{
public:
// construction/destruction
- vboy_eeprom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ vboy_eeprom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// reading and writing
virtual DECLARE_READ32_MEMBER(read_eeprom) override;