diff options
author | 2022-10-02 08:56:15 -0400 | |
---|---|---|
committer | 2022-10-02 08:56:15 -0400 | |
commit | 45b12b66f20e54c2b96bd14dc89dd48b6b8e50a8 (patch) | |
tree | 78218b5f361a2b94a2422c23d1486701cdb3f94c | |
parent | 9f3e4fe03aac841c2ae5440752046ad73065d23e (diff) |
wd1000: use resolve_safe for m_intrq_cb (#10382)
-rw-r--r-- | src/devices/machine/wd1000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/wd1000.cpp b/src/devices/machine/wd1000.cpp index 848c368e6b6..ba4c6a5c1a9 100644 --- a/src/devices/machine/wd1000.cpp +++ b/src/devices/machine/wd1000.cpp @@ -58,7 +58,7 @@ void wd1000_device::set_sector_base(uint32_t base) void wd1000_device::device_start() { // Resolve callbacks - m_intrq_cb.resolve(); + m_intrq_cb.resolve_safe(); m_drq_cb.resolve(); // Allocate timers |