please people, don't leave printf around - we have logerror and the LOG stuff from logmacro.h (nw)

This commit is contained in:
Vas Crabb 2018-08-29 22:43:09 +10:00
parent 9c0b75ca58
commit 133c94b133

View File

@ -113,7 +113,7 @@ WRITE8_MEMBER(taito_zoom_device::tms_ctrl_w)
void taito_zoom_device::update_status_pin(int state)
{
printf("inside callback set status to %d\n",state);
logerror("inside callback set status to %d\n", state);
m_soundcpu->set_input_line(1, state);
machine().scheduler().synchronize(); // the fix to all problems
}