From 39e7859ab05be4ba8e640948860f2173bd1a3732 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 12 Apr 2017 23:13:31 -0400 Subject: [PATCH] Inadvertent omission that was bound to fail (nw) --- src/devices/machine/msm6253.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/msm6253.cpp b/src/devices/machine/msm6253.cpp index ad777bcaccb..450b178f701 100644 --- a/src/devices/machine/msm6253.cpp +++ b/src/devices/machine/msm6253.cpp @@ -68,7 +68,7 @@ ioport_value msm6253_device::port_read() if (m_analog_ports[port].found()) return m_analog_ports[port]->read(); - logerror("%s: Read from unassigned IN%d\n", port); + logerror("%s: Read from unassigned IN%d\n", machine().describe_context(), port); return 0xff; }