mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Add Sharp X68k detection (fixes #387)
This commit is contained in:
@@ -195,7 +195,7 @@ namespace MPF.Core.Data
|
||||
if (systemFromLabel != null)
|
||||
return systemFromLabel;
|
||||
|
||||
#region Consoles
|
||||
#region Consoles
|
||||
|
||||
// Microsoft Xbox 360
|
||||
try
|
||||
@@ -270,9 +270,19 @@ namespace MPF.Core.Data
|
||||
return RedumpSystem.VTechVFlashVSmilePro;
|
||||
}
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region Video Formats
|
||||
#region Computers
|
||||
|
||||
// Sharp X68000
|
||||
if (File.Exists(Path.Combine(drivePath, "COMMAND.X")))
|
||||
{
|
||||
return RedumpSystem.SharpX68000;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Video Formats
|
||||
|
||||
// BD-Video
|
||||
if (Directory.Exists(Path.Combine(drivePath, "BDMV")))
|
||||
|
||||
Reference in New Issue
Block a user