From 6b493af1f9c74d1ada6a58584d213e9b005af837 Mon Sep 17 00:00:00 2001 From: Miepee Date: Wed, 7 Sep 2022 19:19:44 +0200 Subject: [PATCH] Add warning to gui --- AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs b/AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs index 8985f0a..a4f4fc2 100644 --- a/AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs +++ b/AM2RPortHelperGUI/AM2RPortHelperGUI/MainForm.cs @@ -91,7 +91,8 @@ public partial class MainForm : Form 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)); }