mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +03:00
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)
This commit is contained in:
parent
9533352c6b
commit
1f5bf4666d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user