diff --git a/src/Vinesauce ROM Corruptor/MainForm.cs b/src/Vinesauce ROM Corruptor/MainForm.cs index c683445..65ddf20 100644 --- a/src/Vinesauce ROM Corruptor/MainForm.cs +++ b/src/Vinesauce ROM Corruptor/MainForm.cs @@ -857,7 +857,7 @@ namespace Vinesauce_ROM_Corruptor // Attempt to restart. try { - Emulator = Process.Start(textBox_EmulatorToRun.Text, textBox_SaveLocation.Text); + Emulator = Process.Start(textBox_EmulatorToRun.Text, "\"" + textBox_SaveLocation.Text + "\""); } catch { @@ -877,7 +877,7 @@ namespace Vinesauce_ROM_Corruptor // Its not, just try to start the emulator. try { - Emulator = Process.Start(textBox_EmulatorToRun.Text, textBox_SaveLocation.Text); + Emulator = Process.Start(textBox_EmulatorToRun.Text, "\"" + textBox_SaveLocation.Text + "\""); } catch {