mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-12-03 20:32:53 +08:00
Updated error report tool to support all launcher .exes
This commit is contained in:
parent
be73ea2bcb
commit
1f75bd8e06
@ -38,11 +38,18 @@ namespace CodeWalker.ErrorReport
|
||||
{
|
||||
var msg = errLastEntry.Message;
|
||||
var lines = msg.Split('\n');
|
||||
if ((lines.Length > 0) && (lines[0].Contains("CodeWalker.exe")))
|
||||
if (lines.Length > 0)
|
||||
{
|
||||
ErrorTextBox.Text = msg.Replace("\n", "\r\n");
|
||||
found = true;
|
||||
break;
|
||||
var l = lines[0];
|
||||
if (l.Contains("CodeWalker.exe") ||
|
||||
l.Contains("CodeWalker RPF Explorer.exe") ||
|
||||
l.Contains("CodeWalker Ped Viewer.exe") ||
|
||||
l.Contains("CodeWalker Vehicle Viewer.exe"))
|
||||
{
|
||||
ErrorTextBox.Text = msg.Replace("\n", "\r\n");
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user