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