diff options
author | 2015-12-06 13:32:00 +0100 | |
---|---|---|
committer | 2015-12-06 13:32:00 +0100 | |
commit | a558fcefef371ca99831ecead6baaa988355e7af (patch) | |
tree | b90b6a3e2c0febbfdb7efba1d4103d5a7c235260 /src/devices/bus/megadrive/sk.h | |
parent | 866f0b6805511e8863d7dee9bdb4db65d20da443 (diff) |
override for for macros that could not be auto recognized by tools (nw)
Diffstat (limited to 'src/devices/bus/megadrive/sk.h')
-rw-r--r-- | src/devices/bus/megadrive/sk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/megadrive/sk.h b/src/devices/bus/megadrive/sk.h index d15ef1fb3b9..606d928daae 100644 --- a/src/devices/bus/megadrive/sk.h +++ b/src/devices/bus/megadrive/sk.h @@ -21,8 +21,8 @@ public: virtual machine_config_constructor device_mconfig_additions() const override; // reading and writing - virtual DECLARE_READ16_MEMBER(read); - virtual DECLARE_WRITE16_MEMBER(write); + virtual DECLARE_READ16_MEMBER(read) override; + virtual DECLARE_WRITE16_MEMBER(write) override; private: required_device<md_cart_slot_device> m_exp; |