From 30191db9cb4bb7f27f892a821243c88771be16e4 Mon Sep 17 00:00:00 2001 From: Anonymus Raccoon Date: Wed, 25 Mar 2020 18:55:21 +0100 Subject: [PATCH] Adding padding to the usage message --- sources/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/main.cpp b/sources/main.cpp index 56c7420..f01c0c2 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -16,10 +16,10 @@ void usage(char *bin) std::cout << "ComSquare:" << std::endl << "\tUsage: " << bin << " rom_path [options]" << std::endl << "Options:" << std::endl - << "\t-c, --cpu: \tEnable the debugger of the CPU." << std::endl + << "\t-c, --cpu: \tEnable the debugger of the CPU." << std::endl << "\t-m, --memory: \tEnable the memory viewer panel." << std::endl << "\t-h, --header: \tShow the header of the cartridge." << std::endl - << "\t-b, --bus: \tShow the memory bus's log." << std::endl; + << "\t-b, --bus: \tShow the memory bus's log." << std::endl; } void parseArguments(int argc, char **argv, SNES &snes) @@ -28,7 +28,7 @@ void parseArguments(int argc, char **argv, SNES &snes) int option_index = 0; static struct option long_options[] = { {"cpu", no_argument, 0, 'c'}, - {"apu", no_argument, 0, 'a' }, + {"apu", no_argument, 0, 'a'}, {"memory", no_argument, 0, 'm'}, {"header", no_argument, 0, 'h'}, {"bus", no_argument, 0, 'b'},