diff options
| author | 2014-09-12 14:27:26 +0000 | |
|---|---|---|
| committer | 2014-09-12 14:27:26 +0000 | |
| commit | 71c19af91fa5649fa46cf054d1be712ce3169168 (patch) | |
| tree | 6d65492538c16364d711bd27e1deaa9d64f90b2c /src | |
| parent | a40947caa0192589446aad7b536882887221faff (diff) | |
some c++11 compilation fixes (nw)
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/bus/ep64/exp.h | 2 | ||||
| -rw-r--r-- | src/emu/machine/mc68328.h | 2 | ||||
| -rw-r--r-- | src/emu/machine/upd71071.h | 2 | ||||
| -rw-r--r-- | src/emu/sound/c6280.h | 2 | ||||
| -rw-r--r-- | src/emu/video/mos6566.h | 2 | ||||
| -rw-r--r-- | src/emu/video/vic4567.h | 2 | ||||
| -rw-r--r-- | src/mame/video/ppu2c0x.h | 2 | ||||
| -rw-r--r-- | src/mess/video/zx8301.h | 2 | ||||
| -rw-r--r-- | src/version.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/bus/ep64/exp.h b/src/emu/bus/ep64/exp.h index a1ebcedd625..48ca248817b 100644 --- a/src/emu/bus/ep64/exp.h +++ b/src/emu/bus/ep64/exp.h @@ -72,7 +72,7 @@ MCFG_DEVICE_SLOT_INTERFACE(ep64_expansion_bus_cards, _def_slot, false) #define MCFG_EP64_EXPANSION_BUS_SLOT_DAVE(_tag) \ - ep64_expansion_bus_slot_device::static_set_dave_tag(*device, "^"_tag); + ep64_expansion_bus_slot_device::static_set_dave_tag(*device, "^" _tag); #define MCFG_EP64_EXPANSION_BUS_SLOT_IRQ_CALLBACK(_write) \ devcb = &ep64_expansion_bus_slot_device::set_irq_wr_callback(*device, DEVCB_##_write); diff --git a/src/emu/machine/mc68328.h b/src/emu/machine/mc68328.h index 73b27a0c538..d3f79d4255f 100644 --- a/src/emu/machine/mc68328.h +++ b/src/emu/machine/mc68328.h @@ -704,7 +704,7 @@ private: extern const device_type MC68328; #define MCFG_MC68328_CPU(_tag) \ - mc68328_device::static_set_cpu_tag(*device, "^"_tag); + mc68328_device::static_set_cpu_tag(*device, "^" _tag); #define MCFG_MC68328_OUT_PORT_A_CB(_devcb) \ devcb = &mc68328_device::set_out_port_a_callback(*device, DEVCB_##_devcb); diff --git a/src/emu/machine/upd71071.h b/src/emu/machine/upd71071.h index 61e254b3e7e..27788894fac 100644 --- a/src/emu/machine/upd71071.h +++ b/src/emu/machine/upd71071.h @@ -94,7 +94,7 @@ private: extern const device_type UPD71071; #define MCFG_UPD71071_CPU(_tag) \ - upd71071_device::static_set_cpu_tag(*device, "^"_tag); + upd71071_device::static_set_cpu_tag(*device, "^" _tag); #define MCFG_UPD71071_CLOCK(_clk) \ upd71071_device::set_clock(*device, _clk); diff --git a/src/emu/sound/c6280.h b/src/emu/sound/c6280.h index eb476495ff6..c068356a8b8 100644 --- a/src/emu/sound/c6280.h +++ b/src/emu/sound/c6280.h @@ -53,7 +53,7 @@ private: extern const device_type C6280; #define MCFG_C6280_CPU(_tag) \ - c6280_device::set_devicecpu_tag(*device, "^"_tag); + c6280_device::set_devicecpu_tag(*device, "^" _tag); #endif /* __C6280_H__ */ diff --git a/src/emu/video/mos6566.h b/src/emu/video/mos6566.h index daf247d32f0..c69b7523170 100644 --- a/src/emu/video/mos6566.h +++ b/src/emu/video/mos6566.h @@ -92,7 +92,7 @@ //*************************************************************************** #define MCFG_MOS6566_CPU(_tag) \ - mos6566_device::static_set_cpu_tag(*device, "^"_tag); + mos6566_device::static_set_cpu_tag(*device, "^" _tag); #define MCFG_MOS6566_IRQ_CALLBACK(_write) \ devcb = &mos6566_device::set_irq_wr_callback(*device, DEVCB_##_write); diff --git a/src/emu/video/vic4567.h b/src/emu/video/vic4567.h index 4582c537d7e..0b6f5439d65 100644 --- a/src/emu/video/vic4567.h +++ b/src/emu/video/vic4567.h @@ -238,7 +238,7 @@ extern const device_type VIC3; #define MCFG_VIC3_CPU(_tag) \ - vic3_device::static_set_cpu_tag(*device, "^"_tag); + vic3_device::static_set_cpu_tag(*device, "^" _tag); #define MCFG_VIC3_TYPE(_type) \ vic3_device::set_vic3_type(*device, _type); diff --git a/src/mame/video/ppu2c0x.h b/src/mame/video/ppu2c0x.h index 6eddecc289b..c44b03b6121 100644 --- a/src/mame/video/ppu2c0x.h +++ b/src/mame/video/ppu2c0x.h @@ -106,7 +106,7 @@ enum #define MCFG_PPU2C0X_SET_SCREEN MCFG_VIDEO_SET_SCREEN #define MCFG_PPU2C0X_CPU(_tag) \ - ppu2c0x_device::set_cpu_tag(*device, "^"_tag); + ppu2c0x_device::set_cpu_tag(*device, "^" _tag); #define MCFG_PPU2C0X_COLORBASE(_color) \ ppu2c0x_device::set_color_base(*device, _color); diff --git a/src/mess/video/zx8301.h b/src/mess/video/zx8301.h index 53a12f75079..855ae91caec 100644 --- a/src/mess/video/zx8301.h +++ b/src/mess/video/zx8301.h @@ -46,7 +46,7 @@ ///************************************************************************* #define MCFG_ZX8301_CPU(_tag) \ - zx8301_device::static_set_cpu_tag(*device, "^"_tag); + zx8301_device::static_set_cpu_tag(*device, "^" _tag); #define MCFG_ZX8301_VSYNC_CALLBACK(_write) \ devcb = &zx8301_device::set_vsync_wr_callback(*device, DEVCB_##_write); diff --git a/src/version.c b/src/version.c index 7e0ba63b3c0..a2c76de86a3 100644 --- a/src/version.c +++ b/src/version.c @@ -9,4 +9,4 @@ ***************************************************************************/ extern const char build_version[]; -const char build_version[] = "0.154 ("__DATE__")"; +const char build_version[] = "0.154 (" __DATE__")"; |
