diff options
author | 2017-04-12 23:13:31 -0400 | |
---|---|---|
committer | 2017-04-12 23:13:31 -0400 | |
commit | 39e7859ab05be4ba8e640948860f2173bd1a3732 (patch) | |
tree | c4b512a36bb9cfa43770af4cfb584ee837cc8490 | |
parent | 0188b4e80baefe6b5f889b92fe3cd1c6e52f5cab (diff) |
Inadvertent omission that was bound to fail (nw)
-rw-r--r-- | src/devices/machine/msm6253.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |