diff options
author | 2015-12-05 20:32:27 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:53 +0100 | |
commit | 1c4865d66ff88a6891ebdde4580c3d61ee46ffa2 (patch) | |
tree | 268936fc8389b1a2adb8bfc3fa3006f12a4ccc95 /src/devices/bus/coleco/exp.h | |
parent | e8516832e941e39fa1db11211249afa9f015e7bb (diff) |
override part 1 (nw)
Diffstat (limited to 'src/devices/bus/coleco/exp.h')
-rw-r--r-- | src/devices/bus/coleco/exp.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/devices/bus/coleco/exp.h b/src/devices/bus/coleco/exp.h index 1264c7bec89..c70b06959a0 100644 --- a/src/devices/bus/coleco/exp.h +++ b/src/devices/bus/coleco/exp.h @@ -74,26 +74,26 @@ public: protected: // device-level overrides - virtual void device_config_complete() { update_names(); } - virtual void device_start(); + virtual void device_config_complete() override { update_names(); } + virtual void device_start() override; // image-level overrides - virtual bool call_load(); - virtual bool call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry); + virtual bool call_load() override; + virtual bool call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry) override; - virtual iodevice_t image_type() const { return IO_CARTSLOT; } + virtual iodevice_t image_type() const override { return IO_CARTSLOT; } - virtual bool is_readable() const { return 1; } - virtual bool is_writeable() const { return 0; } - virtual bool is_creatable() const { return 0; } - virtual bool must_be_loaded() const { return 0; } - virtual bool is_reset_on_load() const { return 1; } - virtual const char *image_interface() const { return "coleco_cart"; } - virtual const char *file_extensions() const { return "rom,col,bin"; } - virtual const option_guide *create_option_guide() const { return nullptr; } + virtual bool is_readable() const override { return 1; } + virtual bool is_writeable() const override { return 0; } + virtual bool is_creatable() const override { return 0; } + virtual bool must_be_loaded() const override { return 0; } + virtual bool is_reset_on_load() const override { return 1; } + virtual const char *image_interface() const override { return "coleco_cart"; } + virtual const char *file_extensions() const override { return "rom,col,bin"; } + virtual const option_guide *create_option_guide() const override { return nullptr; } // slot interface overrides - virtual void get_default_card_software(std::string &result); + virtual void get_default_card_software(std::string &result) override; device_colecovision_cartridge_interface *m_card; }; |