diff options
author | 2021-09-28 00:47:12 +1000 | |
---|---|---|
committer | 2021-09-28 00:47:12 +1000 | |
commit | d173b601c301a3c75a5c351bdd623b4d984593a9 (patch) | |
tree | 63ad6cc8cbf48c27be16a4bbc5a826ca400184a5 | |
parent | 839d2e69e9584575cd06e7648f9050b9a769d5bd (diff) |
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.
-rw-r--r-- | hash/apxen_flop.xml | 5 | ||||
-rw-r--r-- | hash/pc8001mk2_flop.xml | 11 | ||||
-rw-r--r-- | hash/pc8801_flop.xml | 11 | ||||
-rw-r--r-- | src/osd/modules/debugger/qt/debuggerview.cpp | 2 |
4 files changed, 4 insertions, 25 deletions
diff --git a/hash/apxen_flop.xml b/hash/apxen_flop.xml index cfd9b7d2676..e3b36f700ec 100644 --- a/hash/apxen_flop.xml +++ b/hash/apxen_flop.xml @@ -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> diff --git a/hash/pc8001mk2_flop.xml b/hash/pc8001mk2_flop.xml index a8dd3e69b11..d0ee6448370 100644 --- a/hash/pc8001mk2_flop.xml +++ b/hash/pc8001mk2_flop.xml @@ -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> diff --git a/hash/pc8801_flop.xml b/hash/pc8801_flop.xml index 148ec69b125..8d66982b835 100644 --- a/hash/pc8801_flop.xml +++ b/hash/pc8801_flop.xml @@ -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> diff --git a/src/osd/modules/debugger/qt/debuggerview.cpp b/src/osd/modules/debugger/qt/debuggerview.cpp index f8ffda536b1..a1c8bcf2aec 100644 --- a/src/osd/modules/debugger/qt/debuggerview.cpp +++ b/src/osd/modules/debugger/qt/debuggerview.cpp @@ -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"; } |