Fix build (nw)

This commit is contained in:
AJR 2018-05-28 12:17:39 -04:00
parent 2fedd39d2b
commit 8863aef519

View File

@ -220,7 +220,7 @@ public:
template <typename T> tia_pal_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&tia_tag)
: tia_pal_video_device(mconfig, tag, owner, clock)
{
m_tia.set_tag(std::forward<T>(tia_tag));
set_tia_tag(tia_tag);
}
tia_pal_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
@ -238,7 +238,7 @@ public:
template <typename T> tia_ntsc_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&tia_tag)
: tia_ntsc_video_device(mconfig, tag, owner, clock)
{
m_tia.set_tag(std::forward<T>(tia_tag));
set_tia_tag(tia_tag);
}
tia_ntsc_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);