Fix build from rushed code

This commit is contained in:
Matt Nadareski
2024-02-01 11:11:13 -05:00
parent 35dec7fe57
commit a748bd4d3a
2 changed files with 2 additions and 1 deletions

View File

@@ -26,6 +26,7 @@
- Exclude extra tracks when finding disc matches (Deterous)
- Verbose Redumper log by default (Deterous)
- Retrieve serial from Cleanrip
- Fix build from rushed code
### 3.0.3 (2023-12-04)

View File

@@ -288,7 +288,7 @@ namespace MPF.Core.Modules.CleanRip
/// <returns></returns>
private static bool GetGameCubeWiiInformation(string dumpinfo, out Region? region, out string? version, out string? name, out string? serial)
{
region = null; version = null; name = null, serial = null;
region = null; version = null; name = null; serial = null;
// If the file doesn't exist, we can't get info from it
if (!File.Exists(dumpinfo))