diff --git a/PicoNesLoader/PicoNesLoader/PicoLoader.cs b/PicoNesLoader/PicoNesLoader/PicoLoader.cs index 12418ff..a881064 100644 --- a/PicoNesLoader/PicoNesLoader/PicoLoader.cs +++ b/PicoNesLoader/PicoNesLoader/PicoLoader.cs @@ -349,7 +349,8 @@ private void CheckPicoSystemStatus() Arguments = "info -a", UseShellExecute = false, RedirectStandardOutput = true, - CreateNoWindow = true + CreateNoWindow = true, + WindowStyle = ProcessWindowStyle.Hidden } }; process.Start(); @@ -638,7 +639,8 @@ public void PicoFlash(string filename, string binaryType, long address, IProgres Arguments = $"load {filename} -t {binaryType}{offsetArg}", UseShellExecute = false, RedirectStandardOutput = true, - CreateNoWindow = true + CreateNoWindow = true, + WindowStyle = ProcessWindowStyle.Hidden } }; process.Start();