diff options
Diffstat (limited to 'src/devices/machine/msm58321.h')
-rw-r--r-- | src/devices/machine/msm58321.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/msm58321.h b/src/devices/machine/msm58321.h index 04d174eedc2..0013f7901cf 100644 --- a/src/devices/machine/msm58321.h +++ b/src/devices/machine/msm58321.h @@ -22,7 +22,7 @@ #ifndef __MSM58321__ #define __MSM58321__ -#include "emu.h" +#include "dirtc.h" @@ -89,7 +89,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_y2k() override { return m_year0 != 0; } + virtual bool rtc_feature_y2k() const override { return m_year0 != 0; } // device_nvram_interface overrides virtual void nvram_default() override; |