capcom/alien.cpp: fix mem_mask size on I/O in1

This commit is contained in:
angelosa 2023-09-11 01:44:49 +02:00
parent 9eab73cc4c
commit af70c97d82
2 changed files with 5 additions and 2 deletions

View File

@ -66650,11 +66650,14 @@ doujin?!?
</part> </part>
</software> </software>
<!-- Black screen -->
<software name="5galscon" supported="no"> <software name="5galscon" supported="no">
<description>Five Gals Connection</description> <description>Five Gals Connection</description>
<year>19??</year> <year>19??</year>
<publisher>&lt;doujin&gt;</publisher> <!-- is this really a doujin soft? --> <publisher>&lt;doujin&gt;</publisher> <!-- is this really a doujin soft? -->
<notes><![CDATA[
Black screen [FDC] 2DD disk
Supposedly has XA and LT support
]]></notes>
<info name="author" value="Fancy Soft" /> <info name="author" value="Fancy Soft" />
<info name="alt_title" value="ファイブギャルズコネクション" /> <info name="alt_title" value="ファイブギャルズコネクション" />
<part name="flop1" interface="floppy_5_25"> <part name="flop1" interface="floppy_5_25">

View File

@ -184,7 +184,7 @@ void alien_state::alien_map(address_map &map)
map(0x08000000, 0x08000007).portr("DSW"); map(0x08000000, 0x08000007).portr("DSW");
// wontame at least // wontame at least
map(0x08800000, 0x08800001).lr16( map(0x08800000, 0x08800001).lr16(
NAME([this] (offs_t offset, u32 mem_mask) { NAME([this] (offs_t offset, u16 mem_mask) {
return m_io_in1->read(); return m_io_in1->read();
}) })
); );