diff --git a/VisualME7Logger/SettingsForm.cs b/VisualME7Logger/SettingsForm.cs index d149b79..1d29000 100644 --- a/VisualME7Logger/SettingsForm.cs +++ b/VisualME7Logger/SettingsForm.cs @@ -64,6 +64,11 @@ public SettingsForm() MessageBox.Show(this, "VisualME7Logger detected that it is not running with administrative privileges. You may have problems using this software.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning); } #endif + + if (!File.Exists(Path.Combine(Program.ME7LoggerDirectory, "bin", "ME7Logger.exe"))) + { + MessageBox.Show(this, "Ensure VisualME7Logger is in the main directory of ME7Logger, otherwise you will not be able to start logging.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning); + } } void SetupGrid() @@ -1202,4 +1207,4 @@ public override string ToString() return string.Format("{0}, Name: {1}", this.Variable, this.Name); } } -} \ No newline at end of file +}