mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Detect HD-DVD-Video
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
- ~~Updated to DIC version 20201101~~
|
||||
- Add support for `/ps` DIC flag
|
||||
- Updated to BurnOutSharp 1.5.0
|
||||
- Added HD-DVD-Video detection
|
||||
|
||||
### 1.17.1 (2020-09-14)
|
||||
- Shuffled some shared, internal UI variables
|
||||
|
||||
@@ -932,6 +932,13 @@ namespace DICUI.Utilities
|
||||
return KnownSystem.DVDVideo;
|
||||
}
|
||||
|
||||
// HD-DVD-Video
|
||||
if (Directory.Exists(Path.Combine(drivePath, "HVDVD_TS"))
|
||||
&& Directory.EnumerateFiles(Path.Combine(drivePath, "HVDVD_TS")).Count() > 0)
|
||||
{
|
||||
return KnownSystem.HDDVDVideo;
|
||||
}
|
||||
|
||||
// Sega Dreamcast
|
||||
if (File.Exists(Path.Combine(drivePath, "IP.BIN")))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user