From e9d96232323ffc6b684e61c9169659d615db5082 Mon Sep 17 00:00:00 2001 From: Christopher Rasch-Olsen Raa Date: Thu, 20 Mar 2014 22:46:23 +0100 Subject: [PATCH] Corrected application parameter names --- 2048_curses.c | 4 ++-- 2048_no_curses.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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); } }