diff options
Diffstat (limited to 'src/devices/machine/ds1302.h')
-rw-r--r-- | src/devices/machine/ds1302.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ds1302.h b/src/devices/machine/ds1302.h index 515613579b2..6afbc9ea9a4 100644 --- a/src/devices/machine/ds1302.h +++ b/src/devices/machine/ds1302.h @@ -18,7 +18,7 @@ #ifndef __DS1302_H__ #define __DS1302_H__ -#include "emu.h" +#include "dirtc.h" @@ -63,7 +63,7 @@ protected: // device_rtc_interface overrides virtual void rtc_clock_updated(int year, int month, int day, int day_of_week, int hour, int minute, int second) override; - virtual bool rtc_feature_leap_year() override { return true; } + virtual bool rtc_feature_leap_year() const override { return true; } private: void load_shift_register(); |