summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-06-07 00:55:17 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-06-07 00:55:17 -0400
commite1cbf358322efdcfcb2993e3461ca138990948ba (patch)
treec7b944d25254b014bd8509e977d8c5724ba02aa1
parentd33a7fc165dfc564df23bee8c7aef69279aedc2c (diff)
okim6295: Simplify logerror messages (nw)
-rw-r--r--src/devices/sound/okim6295.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/okim6295.cpp b/src/devices/sound/okim6295.cpp
index 16eb4915462..78bf872af3d 100644
--- a/src/devices/sound/okim6295.cpp
+++ b/src/devices/sound/okim6295.cpp
@@ -284,12 +284,12 @@ void okim6295_device::write_command(uint8_t command)
// invalid samples go here
else
{
- logerror("OKIM6295:'%s' requested to play invalid sample %02x\n",tag(),m_command);
+ logerror("Requested to play invalid sample %02x\n", m_command);
}
}
else
{
- logerror("OKIM6295:'%s' requested to play sample %02x on non-stopped voice\n",tag(),m_command);
+ logerror("Requested to play sample %02x on non-stopped voice\n", m_command);
}
}