more c++11 compilation fixes (nw)

This commit is contained in:
Oliver Stöneberg 2014-09-12 14:54:16 +00:00
parent 71c19af91f
commit 90a9339d0f
4 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@
***************************************************************************/
#define MCFG_K056230_CPU(_tag) \
k056230_device::set_cpu_tag(*device, "^"_tag);
k056230_device::set_cpu_tag(*device, "^" _tag);
#define MCFG_K056230_HACK(_region) \
k056230_device::set_thunderh_hack(*device, _region);

View File

@ -84,7 +84,7 @@ extern const device_type MB_VCU;
//**************************************************************************
#define MCFG_MB_VCU_CPU(_tag) \
mb_vcu_device::set_cpu_tag(*device, "^"_tag);
mb_vcu_device::set_cpu_tag(*device, "^" _tag);
#define MCFG_MB_VCU_PALETTE(_palette_tag) \
mb_vcu_device::static_set_palette_tag(*device, "^" _palette_tag);

View File

@ -7,10 +7,10 @@
//**************************************************************************
#define MCFG_TC0140SYT_MASTER_CPU(_tag) \
tc0140syt_device::set_master_tag(*device, "^"_tag);
tc0140syt_device::set_master_tag(*device, "^" _tag);
#define MCFG_TC0140SYT_SLAVE_CPU(_tag) \
tc0140syt_device::set_slave_tag(*device, "^"_tag);
tc0140syt_device::set_slave_tag(*device, "^" _tag);
//**************************************************************************

View File

@ -61,6 +61,6 @@ extern const device_type VIDEO_VRENDER0;
#define MCFG_VIDEO_VRENDER0_CPU(_tag) \
vr0video_device::set_cpu_tag(*device, "^"_tag);
vr0video_device::set_cpu_tag(*device, "^" _tag);
#endif /* __VR0VIDEO_H__ */