diff options
author | 2016-01-16 12:24:11 +0100 | |
---|---|---|
committer | 2016-01-16 14:54:42 +0100 | |
commit | 1f90ceab075c4869298e963bf0a14a0aac2f1caa (patch) | |
tree | 49984b30e3c6da6a0be068dbfcd02882bdafdc08 /src/devices/bus/nes/mmc1.h | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/bus/nes/mmc1.h')
-rw-r--r-- | src/devices/bus/nes/mmc1.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/nes/mmc1.h b/src/devices/bus/nes/mmc1.h index 7b71b732a87..ca284bd5f2b 100644 --- a/src/devices/bus/nes/mmc1.h +++ b/src/devices/bus/nes/mmc1.h @@ -12,8 +12,8 @@ class nes_sxrom_device : public nes_nrom_device { public: // construction/destruction - nes_sxrom_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); - nes_sxrom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + nes_sxrom_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); + nes_sxrom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); // device-level overrides virtual void device_start() override; @@ -39,7 +39,7 @@ class nes_sorom_device : public nes_sxrom_device { public: // construction/destruction - nes_sorom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + nes_sorom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); virtual DECLARE_READ8_MEMBER(read_m) override; virtual DECLARE_WRITE8_MEMBER(write_m) override; @@ -51,7 +51,7 @@ class nes_sxrom_a_device : public nes_sxrom_device { public: // construction/destruction - nes_sxrom_a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + nes_sxrom_a_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); virtual DECLARE_READ8_MEMBER(read_m) override; virtual DECLARE_WRITE8_MEMBER(write_m) override; @@ -61,7 +61,7 @@ class nes_sorom_a_device : public nes_sxrom_device { public: // construction/destruction - nes_sorom_a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + nes_sorom_a_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); virtual DECLARE_READ8_MEMBER(read_m) override; virtual DECLARE_WRITE8_MEMBER(write_m) override; |