From 5c758686f08f69c7cdd592645f6b28e984449541 Mon Sep 17 00:00:00 2001 From: Ryan Sammon Date: Tue, 11 Jun 2013 15:22:46 -0400 Subject: [PATCH] Emulator path fix. --- src/Vinesauce ROM Corruptor/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Vinesauce ROM Corruptor/MainForm.cs b/src/Vinesauce ROM Corruptor/MainForm.cs index 65ddf20..416699b 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 {