mirror of
https://github.com/holub/mame
synced 2025-05-31 01:51:46 +03:00
few more returning int literal for bool (nw)
This commit is contained in:
parent
13b1ebb1b4
commit
62af304b91
@ -30,11 +30,11 @@ public:
|
||||
|
||||
virtual iodevice_t image_type() const noexcept override { return IO_ROM; }
|
||||
|
||||
virtual bool is_readable() const noexcept override { return 1; }
|
||||
virtual bool is_writeable() const noexcept override { return 0; }
|
||||
virtual bool is_creatable() const noexcept override { return 0; }
|
||||
virtual bool must_be_loaded() const noexcept override { return 0; }
|
||||
virtual bool is_reset_on_load() const noexcept override { return 1; }
|
||||
virtual bool is_readable() const noexcept override { return true; }
|
||||
virtual bool is_writeable() const noexcept override { return false; }
|
||||
virtual bool is_creatable() const noexcept override { return false; }
|
||||
virtual bool must_be_loaded() const noexcept override { return false; }
|
||||
virtual bool is_reset_on_load() const noexcept override { return true; }
|
||||
virtual const char *image_interface() const noexcept override { return "cpc_rom"; }
|
||||
virtual const char *file_extensions() const noexcept override { return "rom,bin"; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user