diff --git a/UnionPatcher.Gui/Forms/ModeSelectionForm.cs b/UnionPatcher.Gui/Forms/ModeSelectionForm.cs index d23fdbd..f9551bc 100644 --- a/UnionPatcher.Gui/Forms/ModeSelectionForm.cs +++ b/UnionPatcher.Gui/Forms/ModeSelectionForm.cs @@ -29,7 +29,8 @@ public class ModeSelectionForm : Form { private void openRemotePatcher(object sender, EventArgs e) { - if (OSUtil.GetPlatform() == OSPlatform.OSX) + OSPlatform platform = OSUtil.GetPlatform(); + if (platform == OSPlatform.OSX || platform == OSPlatform.Windows) { 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();