summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/psx/memcard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/psx/memcard.h')
-rw-r--r--src/devices/bus/psx/memcard.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/psx/memcard.h b/src/devices/bus/psx/memcard.h
index e292d89e589..05bba518d60 100644
--- a/src/devices/bus/psx/memcard.h
+++ b/src/devices/bus/psx/memcard.h
@@ -15,14 +15,14 @@ class psxcard_device : public device_t,
public:
psxcard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- virtual iodevice_t image_type() const override { return IO_MEMCARD; }
-
- virtual bool is_readable() const override { return 1; }
- virtual bool is_writeable() const override { return 1; }
- virtual bool is_creatable() const override { return 1; }
- virtual bool must_be_loaded() const override { return 0; }
- virtual bool is_reset_on_load() const override { return 0; }
- virtual const char *file_extensions() const override { return "mc"; }
+ virtual iodevice_t image_type() const noexcept override { return IO_MEMCARD; }
+
+ virtual bool is_readable() const noexcept override { return true; }
+ virtual bool is_writeable() const noexcept override { return true; }
+ virtual bool is_creatable() const noexcept override { return true; }
+ virtual bool must_be_loaded() const noexcept override { return false; }
+ virtual bool is_reset_on_load() const noexcept override { return false; }
+ virtual const char *file_extensions() const noexcept override { return "mc"; }
virtual image_init_result call_load() override;
virtual image_init_result call_create(int format_type, util::option_resolution *format_options) override;