summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i7220.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i7220.h')
-rw-r--r--src/devices/machine/i7220.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/machine/i7220.h b/src/devices/machine/i7220.h
index 0d142286092..d4d24a3e049 100644
--- a/src/devices/machine/i7220.h
+++ b/src/devices/machine/i7220.h
@@ -52,14 +52,14 @@ public:
// image-level overrides
virtual image_init_result call_load() override;
- 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 0; }
- virtual bool must_be_loaded() const override { return 1; }
- virtual bool is_reset_on_load() const override { return 0; }
- virtual const char *file_extensions() const override { return "bubble"; }
+ 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 false; }
+ virtual bool must_be_loaded() const noexcept override { return true; }
+ virtual bool is_reset_on_load() const noexcept override { return false; }
+ virtual const char *file_extensions() const noexcept override { return "bubble"; }
DECLARE_READ8_MEMBER(read);
DECLARE_WRITE8_MEMBER(write);