Fix missing assignment

This commit is contained in:
Matt Nadareski
2022-08-25 11:36:42 -07:00
parent 3d98f345c1
commit 33cb3d3c97
2 changed files with 2 additions and 1 deletions

View File

@@ -107,6 +107,7 @@
- Fix missing parenthesis
- Add internal name for Cleanrip outputs
- Fix psxt001z namespace
- Fix missing assignment
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

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