diff --git a/2048_curses.c b/2048_curses.c index ed20983..9098e7c 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 956d79e..f936494 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); } } diff --git a/README.md b/README.md index 40c256a..66799d6 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ If you want to use the ncurses version, make sure that you have the required ncu ./2048 ## Options - -b Set the grid border length - -s Set the block spawn rate + -s Set the grid border length + -b Set the block spawn rate -r Resets hiscore. Will prompt user -c Enables color support (ncurses version only)