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
This commit is contained in:
PugsyMAME 2016-03-27 22:00:52 +01:00
parent b48dc77e59
commit 4b5b24c5fc

View File

@ -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; }