diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-26 22:59:53 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-28 22:10:00 +0100 |
| commit | 581a7fe078002785b9ba628ec139a42d678cdf25 (patch) | |
| tree | ab536538f4af5293300f8003e964e0828cb320c8 /BDInfo | |
| parent | a430568082b55f2f989924c59e0729808b39226c (diff) | |
Unwrapped `MoveDirectory`, `DirectoryExists`, `FileExists` & removed `MoveFile`
Diffstat (limited to 'BDInfo')
| -rw-r--r-- | BDInfo/BDROM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BDInfo/BDROM.cs b/BDInfo/BDROM.cs index 85ea7b577..4360ff1d4 100644 --- a/BDInfo/BDROM.cs +++ b/BDInfo/BDROM.cs @@ -150,7 +150,7 @@ namespace BDInfo Is3D = true; } - if (_fileSystem.FileExists(Path.Combine(DirectoryRoot.FullName, "FilmIndex.xml"))) + if (File.Exists(Path.Combine(DirectoryRoot.FullName, "FilmIndex.xml"))) { IsDBOX = true; } |
