mirror of
https://github.com/holub/mame
synced 2025-04-18 22:49:58 +03:00
Fixed some software list issues:
apxen_flop.xml: Marked diag bad and unsupported as the disk image is missing protection data. pc8001mk2_flop.xml, pc8801_flop.xml: Removed some entries that were inadvertently duplicated.
This commit is contained in:
parent
839d2e69e9
commit
d173b601c3
@ -20,13 +20,14 @@ license:CC0
|
||||
</software>
|
||||
|
||||
<!-- Unknown if this is anything official -->
|
||||
<software name="diag">
|
||||
<!-- disk image is missing copy protection information -->
|
||||
<software name="diag" supported="no">
|
||||
<description>Various Diags, XEEROM</description>
|
||||
<year>1986</year>
|
||||
<publisher>ACT</publisher>
|
||||
<part name="flop1" interface="floppy_3_5">
|
||||
<dataarea name="flop" size="705879">
|
||||
<rom name="diag.dsk" size="705879" crc="9d48118f" sha1="2ba690bcc443fd1b02d5eb3017ea12d6172c6985"/>
|
||||
<rom name="diag.dsk" size="705879" crc="9d48118f" sha1="2ba690bcc443fd1b02d5eb3017ea12d6172c6985" status="baddump"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
@ -81,17 +81,6 @@ Bon Bon, Bon Bon, Compaq, Aug 83, Aug 83,
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="n80diska" cloneof="n80diskb">
|
||||
<description>N80 Disk BASIC (alt)</description>
|
||||
<year>19??</year>
|
||||
<publisher><unknown></publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="348848"> <!-- Data CRC16: 34301 -->
|
||||
<rom name="n80 basic (1983)(microsoft - nec).d88" size="348848" crc="ff9416a4" sha1="3321c6a723545ef7f413a372683a1e40ef7ea4ef"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="pc80sys">
|
||||
<description>PC-8001mkII System Disk</description>
|
||||
<year>19??</year>
|
||||
|
@ -48464,17 +48464,6 @@ loderuna - pc8801 Device Floppy Disk load failed: Invalid image
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="fullfire">
|
||||
<description>Full Fire & Other Old Games</description>
|
||||
<year>19??</year>
|
||||
<publisher><unknown></publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="348848">
|
||||
<rom name="full fire & other old games.d88" size="348848" crc="9eec8b75" sha1="0229b1e62264647baf93b126674ca7ab304859ad"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="fuyudego">
|
||||
<description>Fuyu de Gozaru</description>
|
||||
<year>19??</year>
|
||||
|
@ -332,7 +332,7 @@ void DebuggerView::copyVisibleSlot()
|
||||
text += wchar_t(viewdata[col].byte);
|
||||
std::string::size_type const nonblank = text.find_last_not_of("\t\n\v\r ");
|
||||
if (nonblank != std::string::npos)
|
||||
text.resize((std::max)(nonblank + 1, start));
|
||||
text.resize((std::max)(start, nonblank + 1));
|
||||
text += "\n";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user