Fix exceptions in Debug Log Window not using correct line numbers

Additions to fix in commit 1714bc243a
This commit is contained in:
2023-09-22 16:54:23 +03:00
parent faeb21a77a
commit 08d04ea6fb

View File

@@ -573,7 +573,7 @@ namespace FlaxEditor.Windows
if (match.Success)
{
desc.LocationFile = match.Groups[2].Value;
int.TryParse(match.Groups[3].Value, out desc.LocationLine);
int.TryParse(match.Groups[4].Value, out desc.LocationLine);
}
}