summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2025-08-30 12:21:18 +0200
committer Dirk Best <mail@dirk-best.de>2025-08-30 12:21:56 +0200
commit5af009b28318227d6ee5a51df44f714abfb832e8 (patch)
tree9abd7324aae4375f9e178808b193b5bd40d40041
parent60e46e250b631a49c9ea0a1a70a1db4eeeb5df50 (diff)
coleco: svellas doesn't use megacart. Use romset id for note
-rw-r--r--hash/coleco_homebrew.xml1
-rw-r--r--src/mame/coleco/coleco.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/hash/coleco_homebrew.xml b/hash/coleco_homebrew.xml
index 27c4e61116d..236047f6cb9 100644
--- a/hash/coleco_homebrew.xml
+++ b/hash/coleco_homebrew.xml
@@ -2259,7 +2259,6 @@ Unoffical software releases for the Coleco Colecovision
<year>2025</year>
<publisher>Inufuto</publisher>
<part name="cart" interface="coleco_cart">
- <feature name="slot" value="megacart" />
<dataarea name="rom" size="9259">
<rom name="svellas.rom" size="9259" crc="3244546f" sha1="366dbc7552fd0a9e13b88a95b74141e81e0114ec" />
</dataarea>
diff --git a/src/mame/coleco/coleco.cpp b/src/mame/coleco/coleco.cpp
index b8b8b85db98..732264d7457 100644
--- a/src/mame/coleco/coleco.cpp
+++ b/src/mame/coleco/coleco.cpp
@@ -179,7 +179,7 @@ void bit90_state::bit90_map(address_map &map)
void coleco_state::coleco_io_map(address_map &map)
{
map.global_mask(0xff);
- map.unmap_value_high(); // comic bakery relies on this
+ map.unmap_value_high(); // comicbak relies on this
map(0x80, 0x80).mirror(0x1f).w(FUNC(coleco_state::paddle_off_w));
map(0xa0, 0xa1).mirror(0x1e).rw("tms9928a", FUNC(tms9928a_device::read), FUNC(tms9928a_device::write));
map(0xc0, 0xc0).mirror(0x1f).w(FUNC(coleco_state::paddle_on_w));