From 6c78465d763399a3596a520155de5b97df5dadc1 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 1 Mar 2016 07:52:02 +1100 Subject: [PATCH] Fix stupid error --- src/emu/device.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/device.ipp b/src/emu/device.ipp index fde4bafc1de..1501798f586 100644 --- a/src/emu/device.ipp +++ b/src/emu/device.ipp @@ -34,7 +34,7 @@ template inline void device_t::logerror(Format &&fmt, Params &&... args) const { if (m_machine) - m_machine->logerror(string_format("[%s] %s", std::forward(fmt)), std::forward(args)...); + m_machine->logerror(string_format("[%s] %s", tag(), std::forward(fmt)), std::forward(args)...); } -#endif // __DEVICE_IPP__ \ No newline at end of file +#endif // __DEVICE_IPP__