From 4b5b24c5fce1a4267b0d8fc7795ccebca98cfd97 Mon Sep 17 00:00:00 2001 From: PugsyMAME Date: Sun, 27 Mar 2016 22:00:52 +0100 Subject: [PATCH] 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 --- src/devices/bus/coleco/exp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }