Fix for character customization preview on Wine #33
|
|
@ -760,6 +760,7 @@ class CharacterCustomizationShared
|
||||||
{
|
{
|
||||||
Process client = new Process();
|
Process client = new Process();
|
||||||
client.StartInfo.FileName = rbxexe;
|
client.StartInfo.FileName = rbxexe;
|
||||||
|
client.StartInfo.WorkingDirectory = Path.GetDirectoryName(rbxexe);
|
||||||
client.StartInfo.Arguments = args;
|
client.StartInfo.Arguments = args;
|
||||||
client.Start();
|
client.Start();
|
||||||
client.PriorityClass = GlobalVars.UserConfiguration.Priority;
|
client.PriorityClass = GlobalVars.UserConfiguration.Priority;
|
||||||
|
|
@ -772,4 +773,4 @@ class CharacterCustomizationShared
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
||||||
|
|
@ -2154,7 +2154,7 @@ public class GlobalFuncs
|
||||||
{
|
{
|
||||||
Process client = new Process();
|
Process client = new Process();
|
||||||
client.StartInfo.FileName = rbxexe;
|
client.StartInfo.FileName = rbxexe;
|
||||||
client.StartInfo.WorkingDirectory = Path.GetDirectoryName(rbxexe);
|
client.StartInfo.WorkingDirectory = Path.GetDirectoryName(rbxexe);
|
||||||
client.StartInfo.Arguments = args;
|
client.StartInfo.Arguments = args;
|
||||||
if (e != null)
|
if (e != null)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue