mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-07-30 20:58:40 +00:00
Grammar
This commit is contained in:
parent
2d3e0f4b18
commit
cf16143ec2
1 changed files with 3 additions and 3 deletions
|
@ -31,17 +31,17 @@ public class ModeSelectionForm : Form {
|
||||||
{
|
{
|
||||||
if (OSUtil.GetPlatform() == OSPlatform.OSX)
|
if (OSUtil.GetPlatform() == OSPlatform.OSX)
|
||||||
{
|
{
|
||||||
Gui.CreateOkDialog("Workaround", "UnionPatcher RemotePatcher requires a staging folder on macOS, please set this to the directory of the UnionPatcher.app!");
|
Gui.CreateOkDialog("Workaround", "UnionPatcher RemotePatcher requires a staging folder on macOS, please set this to the directory of the UnionPatcher app!");
|
||||||
SelectFolderDialog dialog = new SelectFolderDialog();
|
SelectFolderDialog dialog = new SelectFolderDialog();
|
||||||
if (dialog.ShowDialog(this) != DialogResult.Ok)
|
if (dialog.ShowDialog(this) != DialogResult.Ok)
|
||||||
{
|
{
|
||||||
Gui.CreateOkDialog("Workaround", "Was not specified a staging folder, aborting!");
|
Gui.CreateOkDialog("Workaround", "User did not specify a staging folder, aborting!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Directory.SetCurrentDirectory(dialog.Directory);
|
Directory.SetCurrentDirectory(dialog.Directory);
|
||||||
if (!Directory.Exists("scetool"))
|
if (!Directory.Exists("scetool"))
|
||||||
{
|
{
|
||||||
Gui.CreateOkDialog("Workaround", "Invalid folder, remember to set the folder to the directory of UnionPatcher.app!");
|
Gui.CreateOkDialog("Workaround", "Invalid folder, remember to set the folder to the directory of the UnionPatcher app!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue