diff --git a/CHANGELIST.md b/CHANGELIST.md index c8ea2ad5..e0bbd459 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -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 diff --git a/MPF.Modules/CleanRIp/Parameters.cs b/MPF.Modules/CleanRIp/Parameters.cs index ecffd1ca..c5f43668 100644 --- a/MPF.Modules/CleanRIp/Parameters.cs +++ b/MPF.Modules/CleanRIp/Parameters.cs @@ -209,7 +209,7 @@ namespace MPF.Modules.CleanRip /// 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))