diff options
Diffstat (limited to 'src/devices/sound/sb0400.h')
-rw-r--r-- | src/devices/sound/sb0400.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/sb0400.h b/src/devices/sound/sb0400.h index 440e82a0544..bd4f4d887d0 100644 --- a/src/devices/sound/sb0400.h +++ b/src/devices/sound/sb0400.h @@ -9,12 +9,12 @@ class sb0400_device : public pci_device { public: - sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, uint32_t subdevice_id) + sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, uint32_t subdevice_id) : sb0400_device(mconfig, tag, owner, clock) { set_ids(0x11020008, 0x00, 0x040100, subdevice_id); } - sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: virtual void device_start() override; |