diff options
Diffstat (limited to 'src/mame/apple/egret.h')
-rw-r--r-- | src/mame/apple/egret.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/apple/egret.h b/src/mame/apple/egret.h index f82c4a2e203..abccdcb2614 100644 --- a/src/mame/apple/egret.h +++ b/src/mame/apple/egret.h @@ -33,12 +33,12 @@ class egret_device : public device_t, public device_nvram_interface public: // construction/destruction egret_device(const machine_config &mconfig, const char *tag, device_t *owner, int type) - : egret_device(mconfig, tag, owner, (uint32_t)0) + : egret_device(mconfig, tag, owner) { set_type(type); } - egret_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + egret_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); // inline configuration helpers void set_type(int type) { rom_offset = type; } |