From 1f5bf4666d603575aaa42dbc77437f3d54652c56 Mon Sep 17 00:00:00 2001 From: gordon-fish Date: Fri, 24 Feb 2017 17:00:46 -0800 Subject: Removed colon (":") from image_interface preventing front-ends from launching ColecoVision software Removed colon (":") from image_interface value that was preventing some front-ends, such as QMC2, from being able to launch ColecoVision software from the software list (the software rom itself ended up being omitted so it just booted the main BIOS, like starting a real CV without a game inserted.) (nw) --- 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 0a6d1895970..79f312f5c95 100644 --- a/src/devices/bus/coleco/exp.h +++ b/src/devices/bus/coleco/exp.h @@ -87,7 +87,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"; } // slot interface overrides -- cgit v1.2.3