Electronic not Electric (fixes #402)

This commit is contained in:
Matt Nadareski
2022-08-30 10:42:04 -07:00
parent 9b7e2e35f5
commit 60d5a117b5
5 changed files with 10 additions and 9 deletions

View File

@@ -113,6 +113,7 @@
- Update Aaru submodule to latest devel
- Add Sony Electronic Book system
- Verify GD-ROM outputs, finally
- Electronic not Electric
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -237,7 +237,7 @@ namespace MPF.Library
case RedumpSystem.PalmOS:
case RedumpSystem.PocketPC:
case RedumpSystem.RainbowDisc:
case RedumpSystem.SonyElectricBook:
case RedumpSystem.SonyElectronicBook:
resultProgress?.Report(Result.Success("Running copy protection scan... this might take a while!"));
(string protectionString, Dictionary<string, List<string>> fullProtections) = await GetCopyProtection(drive, options, protectionProgress);
info.CopyProtection.Protection = protectionString;

View File

@@ -468,7 +468,7 @@ namespace MPF.Modules.DiscImageCreator
case RedumpSystem.EnhancedCD:
case RedumpSystem.IBMPCcompatible:
case RedumpSystem.RainbowDisc:
case RedumpSystem.SonyElectricBook:
case RedumpSystem.SonyElectronicBook:
if (File.Exists($"{basePath}_subIntention.txt"))
{
FileInfo fi = new FileInfo($"{basePath}_subIntention.txt");

View File

@@ -2446,8 +2446,8 @@ namespace RedumpLib.Data
[System(Category = SystemCategory.Other, LongName = "Sega Prologue 21 Multimedia Karaoke System", ShortName = "sp21", HasCues = true, HasDat = true)]
SegaPrologue21MultimediaKaraokeSystem,
[System(Category = SystemCategory.Other, Available = false, LongName = "Sony Electric Book")]
SonyElectricBook,
[System(Category = SystemCategory.Other, Available = false, LongName = "Sony Electronic Book")]
SonyElectronicBook,
[System(Category = SystemCategory.Other, Available = false, LongName = "Super Audio CD")]
SuperAudioCD,

View File

@@ -674,7 +674,7 @@ namespace RedumpLib.Data
break;
// UNKNOWN
case RedumpSystem.SonyElectricBook:
case RedumpSystem.SonyElectronicBook:
types.Add(MediaType.CDROM);
break;
@@ -2049,10 +2049,10 @@ namespace RedumpLib.Data
case "sega prologue21":
case "sega prologue 21":
return RedumpSystem.SegaPrologue21MultimediaKaraokeSystem;
case "electricbook":
case "sonyelectricbook":
case "sony electric book":
return RedumpSystem.SonyElectricBook;
case "electronicbook":
case "sonyelectronicbook":
case "sony electronic book":
return RedumpSystem.SonyElectronicBook;
case "sacd":
case "superaudiocd":
case "super audio cd":