From 8e64e7059af46eba3ad972cc1946da503091ca21 Mon Sep 17 00:00:00 2001 From: gered Date: Wed, 24 Nov 2021 21:41:14 -0500 Subject: [PATCH] update help text --- psogc_quest_tool/src/main.rs | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/psogc_quest_tool/src/main.rs b/psogc_quest_tool/src/main.rs index 129e0d9..cdc75af 100644 --- a/psogc_quest_tool/src/main.rs +++ b/psogc_quest_tool/src/main.rs @@ -16,11 +16,20 @@ fn display_help() { println!("USAGE: psogc_quest_tool \n"); println!("COMMANDS:"); println!(" info - Displays info about a quest."); - println!(" - info "); - println!(" - info "); + println!(" - info "); + println!(" - info "); println!(" convert - Converts a quest to a different file format"); - println!(" - convert "); - println!(" Where format_type should be one of: raw_bindat, prs_bindat, online_qst, offline_qst"); + println!(" - convert "); + println!(" Where the arguments:"); + println!(" - \"input files\" and \"output files\" should either be:"); + println!(" a) two files, a .bin and .dat file; or"); + println!(" b) a single .qst file"); + println!(" - \"output_format_type\" should be one of: "); + println!(" - raw_bindat (produces a .bin and .dat, both uncompressed)"); + println!(" - prs_bindat (produces a .bin and .dat, both PRS compressed)"); + println!(" - online_qst (produces a .qst, for online play via a server)"); + println!(" - offline_qst (produces a .qst, for offline play from a mem"); + println!(" card when downloaded from a server)"); } fn main() -> Result<()> {