summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author Justin Kerk <dopefishjustin@gmail.com>2020-08-03 19:29:09 -0700
committer Justin Kerk <dopefishjustin@gmail.com>2020-08-03 19:29:09 -0700
commitdcd868b6be282cca743d52a2cbdbf405c3b3a842 (patch)
tree0935a2a5be9ef097ca6263e8c9957085881c61c8 /src/devices/bus
parent7318829686c92eb6b7df094fd642a35c43d77308 (diff)
odyssey2: Require a cartridge
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/odyssey2/slot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/odyssey2/slot.h b/src/devices/bus/odyssey2/slot.h
index 60151303cb8..50119f71085 100644
--- a/src/devices/bus/odyssey2/slot.h
+++ b/src/devices/bus/odyssey2/slot.h
@@ -91,7 +91,7 @@ public:
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 must_be_loaded() const noexcept override { return true; }
virtual bool is_reset_on_load() const noexcept override { return true; }
virtual const char *image_interface() const noexcept override { return "odyssey_cart"; }
virtual const char *file_extensions() const noexcept override { return "bin,rom"; }