Fix PS2 VER spacing (fixes #112)

This commit is contained in:
Matt Nadareski
2018-08-17 19:24:55 -07:00
parent 4c9e2359af
commit 227688d7dc

View File

@@ -1172,7 +1172,7 @@ namespace DICUI.Utilities
}
// Once it finds the "VER" line, extract the version
return Regex.Match(line, @"VER = (.*)").Groups[1].Value;
return Regex.Match(line, @"VER\s*=\s*(.*)").Groups[1].Value;
}
}
catch