From c92759a9b89549ac07e45ddce29b64d58fa73913 Mon Sep 17 00:00:00 2001 From: Hannes Mann Date: Tue, 14 Jun 2016 04:41:32 +0200 Subject: [PATCH] Tweak command line output --- src/main.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main.cc b/src/main.cc index 134c029..ffd9575 100644 --- a/src/main.cc +++ b/src/main.cc @@ -28,13 +28,13 @@ int main(int argc, char** argv) // Follow GNU format if(str == "--help") { - std::cout << "Usage: openrayman [options] ..."; + std::cout << "Usage: openrayman [options] ..." << std::endl; std::cout << "Options:" << std::endl; - std::cout << " --version Display version information" << std::endl; - std::cout << " --game Specifies what game to run" << std::endl; - std::cout << " This will default to the game set in \"config.json\" if no game is specified." << std::endl; - std::cout << " --convert-data Converts the data folder specified into a format that OpenRayman can read" << std::endl; - std::cout << " This is needed to ease modding support." << std::endl; + std::cout << " --version Display version information" << std::endl; + std::cout << " --game \"game name\" Specifies what game OpenRayman should load" << std::endl; + std::cout << " This will default to the game set in the config file if no game is specified" << std::endl; + std::cout << " --convert-data \"folder\" Converts the data folder specified into a format that OpenRayman can read" << std::endl; + std::cout << " This is needed to ease modding support" << std::endl; return EXIT_SUCCESS; } if(str == "--version")