Fix portable launcher

This commit is contained in:
Ben Olden-Cooligan 2016-11-15 11:24:46 -05:00
parent af5ae5c33a
commit c2997fc102

View File

@ -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 });
}
}
}