From c2997fc102801f0113ab5670c43899a1f180bea5 Mon Sep 17 00:00:00 2001 From: Ben Olden-Cooligan Date: Tue, 15 Nov 2016 11:24:46 -0500 Subject: [PATCH] Fix portable launcher --- NAPS2.Portable/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NAPS2.Portable/Program.cs b/NAPS2.Portable/Program.cs index 4a019ed24..755e34d4a 100644 --- a/NAPS2.Portable/Program.cs +++ b/NAPS2.Portable/Program.cs @@ -15,7 +15,7 @@ namespace NAPS2.Portable if (portableExeDir != null) { var portableExePath = Path.Combine(portableExeDir, @"App\NAPS2.exe"); - typeof(Process).GetMethod("Start").Invoke(null, new object[] { portableExePath }); + typeof(Process).GetMethod("Start", new[] { typeof(string) }).Invoke(null, new object[] { portableExePath }); } } }