From 153c1f206cbe4c12fcf39f864005063c23668b3c Mon Sep 17 00:00:00 2001 From: jvyden Date: Mon, 18 Oct 2021 10:12:19 -0400 Subject: [PATCH] Make CLI actually use args --- UnionPatcher/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnionPatcher/Program.cs b/UnionPatcher/Program.cs index 9de0d40..6fed966 100644 --- a/UnionPatcher/Program.cs +++ b/UnionPatcher/Program.cs @@ -17,12 +17,12 @@ namespace UnionPatcher { } public static void Main(string[] args) { - Patcher.PatchFile("EBOOT.elf", "https://lighthouse.lbpunion.com:10061/LITTLEBIGPLANETPS3_XML", "EBOOT.new.elf"); if(args.Length < 3) { PrintHelp(); return; } + Patcher.PatchFile(args[0], args[1], args[2]); } public static void PrintHelp() {