diff --git a/2048_curses.c b/2048_curses.c index 6a39edf..b685bc2 100644 --- a/2048_curses.c +++ b/2048_curses.c @@ -310,8 +310,8 @@ int main(int argc, char **argv) " 2048 [options]\n" "\n" "Options:\n" - " -b Set the grid border length\n" - " -s Set the block spawn rate\n" + " -s Set the grid border length\n" + " -b Set the block spawn rate\n" " -c Enables color support\n"); exit(EXIT_SUCCESS); } diff --git a/2048_no_curses.c b/2048_no_curses.c index 0b87647..eea9441 100644 --- a/2048_no_curses.c +++ b/2048_no_curses.c @@ -281,8 +281,8 @@ int main(int argc, char **argv) " 2048 [options]\n" "\n" "Options:\n" - " -b Set the grid border length\n" - " -s Set the block spawn rate\n"); + " -s Set the grid border length\n" + " -b Set the block spawn rate\n"); exit(EXIT_SUCCESS); } }