summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/ramdac.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/ramdac.h')
-rw-r--r--src/devices/video/ramdac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/ramdac.h b/src/devices/video/ramdac.h
index 04db99ab945..47671009f68 100644
--- a/src/devices/video/ramdac.h
+++ b/src/devices/video/ramdac.h
@@ -26,10 +26,10 @@ class ramdac_device : public device_t,
public:
// construction/destruction
template <typename T>
- ramdac_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&tag)
+ ramdac_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&palette_tag)
: ramdac_device(mconfig, tag, owner, clock)
{
- m_palette.set_tag(std::forward<T>(tag));
+ m_palette.set_tag(std::forward<T>(palette_tag));
}
ramdac_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);