diff options
author | 2017-02-24 17:00:46 -0800 | |
---|---|---|
committer | 2017-02-25 12:00:46 +1100 | |
commit | 1f5bf4666d603575aaa42dbc77437f3d54652c56 (patch) | |
tree | 24b255d81cf261de2a9547bd0dd4e2b4f09030ce | |
parent | 9533352c6bd965e680f5f20285381d551d508228 (diff) |
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)
-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 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 |