Merge branch 'GoaLitiuM-debug_log_exception_line_fix'

This commit is contained in:
Wojtek Figat
2023-09-22 17:49:11 +02:00

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);
}
}