From 537cb66399a189ba0f60034aa791d217422b2d8f Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Wed, 24 Jan 2018 01:02:19 +1100 Subject: missed these (nw) --- src/devices/sound/cdp1863.h | 2 +- src/devices/sound/cdp1869.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h index bb47f0ea5f2..ddcb5187211 100644 --- a/src/devices/sound/cdp1863.h +++ b/src/devices/sound/cdp1863.h @@ -50,7 +50,7 @@ public: // inline configuration helpers static void static_set_clock2(device_t &device, int clock2); - static void static_set_clock2(device_t &device, const XTAL &xtal) { xtal.check("selecting cdp1863 clock"); static_set_clock2(device, xtal.value()); } + static void static_set_clock2(device_t &device, const XTAL &xtal) { xtal.validate("selecting cdp1863 clock"); static_set_clock2(device, xtal.value()); } DECLARE_WRITE8_MEMBER( str_w ); void str_w(uint8_t data); diff --git a/src/devices/sound/cdp1869.h b/src/devices/sound/cdp1869.h index 234757a2b42..e7013d0eceb 100644 --- a/src/devices/sound/cdp1869.h +++ b/src/devices/sound/cdp1869.h @@ -194,7 +194,7 @@ public: static void static_set_char_ram_write(device_t &device, char_ram_write_delegate &&cb) { downcast(device).m_out_char_ram_func = std::move(cb); } static void static_set_pcb_read(device_t &device, pcb_read_delegate &&cb) { downcast(device).m_in_pcb_func = std::move(cb); } static void static_set_color_clock(device_t &device, int color_clock) { downcast(device).m_color_clock = color_clock; } - static void static_set_color_clock(device_t &device, const XTAL &xtal) { xtal.check("selecting cdp1869 clock"); static_set_color_clock(device, xtal.value()); } + static void static_set_color_clock(device_t &device, const XTAL &xtal) { xtal.validate("selecting cdp1869 clock"); static_set_color_clock(device, xtal.value()); } virtual DECLARE_ADDRESS_MAP(io_map, 8); virtual DECLARE_ADDRESS_MAP(char_map, 8); -- cgit v1.2.3