Fix not capturing the the Debug.Log line in the DebugLogWindow

This commit is contained in:
MineBill
2023-09-22 11:03:59 +03:00
parent 97ed46bc4f
commit 1714bc243a

View File

@@ -544,7 +544,7 @@ namespace FlaxEditor.Windows
if (noLocation)
{
desc.LocationFile = match.Groups[2].Value;
int.TryParse(match.Groups[5].Value, out desc.LocationLine);
int.TryParse(match.Groups[4].Value, out desc.LocationLine);
noLocation = false;
}
fineStackTrace.AppendLine(match.Groups[0].Value);