From 227688d7dcd505ceb131812df4eaf14763c5bf11 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 17 Aug 2018 19:24:55 -0700 Subject: [PATCH] Fix PS2 VER spacing (fixes #112) --- DICUI/Utilities/DumpEnvironment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DICUI/Utilities/DumpEnvironment.cs b/DICUI/Utilities/DumpEnvironment.cs index 86424a60..15f1edec 100644 --- a/DICUI/Utilities/DumpEnvironment.cs +++ b/DICUI/Utilities/DumpEnvironment.cs @@ -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