This commit is contained in:
Matt Nadareski
2023-09-05 09:26:53 -04:00

View File

@@ -1857,7 +1857,7 @@ namespace MPF.Modules
{
case 'S':
// Check first two digits of S_PS serial
switch (serial.Substring(4, 2))
switch (serial.Substring(5, 2))
{
case "46": return Region.SouthKorea;
case "56": return Region.SouthKorea;
@@ -1867,7 +1867,7 @@ namespace MPF.Modules
}
case 'M':
// Check first three digits of S_PM serial
switch (serial.Substring(4, 3))
switch (serial.Substring(5, 3))
{
case "645": return Region.SouthKorea;
case "675": return Region.SouthKorea;