From ab507b68dc617ec8c875f1888733a38456e3e4f4 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 12 Mar 2014 04:09:55 +0000 Subject: [PATCH] upd1771.c: resolve_safe(), heeding advice. (nw) --- src/mess/audio/upd1771.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/audio/upd1771.c b/src/mess/audio/upd1771.c index 7978605ba17..250d6774225 100644 --- a/src/mess/audio/upd1771.c +++ b/src/mess/audio/upd1771.c @@ -235,7 +235,7 @@ upd1771c_device::upd1771c_device(const machine_config &mconfig, const char *tag, void upd1771c_device::device_start() { /* resolve callbacks */ - m_ack_handler.resolve(); + m_ack_handler.resolve_safe(); m_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(upd1771c_device::ack_callback),this));