Skip to content

Commit

Permalink
Add warning to gui
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee committed Sep 7, 2022
1 parent 8519873 commit 6b493af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ private async void ButtonPortOnClick(object sender, EventArgs e)
await Task.Run(() =>PortHelper.PortWindowsToAndroid(modZipPath, androidPath, OutputHandlerDelegate));
if (checkboxMac.Checked.Value)
{
string modName = "foo";//MessageBox.Show()
MessageBox.Show(this, "Currently the mod name is set as \"foo\", you need to manually correct that later! (Search for the files yoyorunner.config and Info.plist");
string modName = "foo";
await Task.Run(() => PortHelper.PortWindowsToMac(modZipPath, macPath, modName, OutputHandlerDelegate));
}

Expand Down

0 comments on commit 6b493af

Please sign in to comment.