From 32d19debfb8087170ff1dc92b8d2a23cfc92c90e Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Sat, 8 Apr 2023 21:13:22 +0100 Subject: [PATCH] Add -p argument for compatibility with stock gbafix --- agb-gbafix/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/agb-gbafix/src/main.rs b/agb-gbafix/src/main.rs index 56edbb8..d3a4e3e 100644 --- a/agb-gbafix/src/main.rs +++ b/agb-gbafix/src/main.rs @@ -16,6 +16,7 @@ fn main() -> Result<()> { .arg(arg!(-c --gamecode "Sets the game code, 4 bytes")) .arg(arg!(-m --makercode "Set the maker code, 0-65535").value_parser(value_parser!(u16))) .arg(arg!(-r --gameversion "Set the version of the game, 0-255").value_parser(value_parser!(u8))) + .arg(arg!(-p "Ignored for compatibility with gbafix")) .get_matches(); let input = matches.get_one::("INPUT").unwrap();