diff options
author | 2016-03-27 22:00:52 +0100 | |
---|---|---|
committer | 2016-03-27 22:00:52 +0100 | |
commit | 4b5b24c5fce1a4267b0d8fc7795ccebca98cfd97 (patch) | |
tree | 04ad36c797e9a41c089901ab6fbb11a323dc7a0b /src/devices/bus/coleco/exp.h | |
parent | b48dc77e592591ce56e0bc1def0f720b0c364798 (diff) |
Update exp.h
Fix the coleco_cart:rom so that it doesn't crash MAME when used in the debugger:-
eg.
print coleco_cart:rom.m@0
Diffstat (limited to 'src/devices/bus/coleco/exp.h')
-rw-r--r-- | src/devices/bus/coleco/exp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/coleco/exp.h b/src/devices/bus/coleco/exp.h index e64e3c8d6d1..09511c5357f 100644 --- a/src/devices/bus/coleco/exp.h +++ b/src/devices/bus/coleco/exp.h @@ -88,7 +88,7 @@ protected: 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 *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; } |