diff options
Diffstat (limited to 'src/devices/video/tlc34076.h')
-rw-r--r-- | src/devices/video/tlc34076.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/tlc34076.h b/src/devices/video/tlc34076.h index c495cf82088..1e86541b2e5 100644 --- a/src/devices/video/tlc34076.h +++ b/src/devices/video/tlc34076.h @@ -30,12 +30,12 @@ public: // construction/destruction tlc34076_device(const machine_config &mconfig, const char *tag, device_t *owner, tlc34076_bits bits) - : tlc34076_device(mconfig, tag, owner, (uint32_t)0) + : tlc34076_device(mconfig, tag, owner) { set_bits(bits); } - tlc34076_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + tlc34076_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); // configuration helpers void set_bits(tlc34076_bits bits) { m_dacbits = bits; } |