Merge pull request #1 from christopherraa/master

Corrected application parameter names
This commit is contained in:
Tiehuis 2014-03-21 12:30:06 +13:00
commit 43f1aa4c60
2 changed files with 4 additions and 4 deletions

View File

@ -310,8 +310,8 @@ int main(int argc, char **argv)
" 2048 [options]\n"
"\n"
"Options:\n"
" -b <size> Set the grid border length\n"
" -s <rate> Set the block spawn rate\n"
" -s <size> Set the grid border length\n"
" -b <rate> Set the block spawn rate\n"
" -c Enables color support\n");
exit(EXIT_SUCCESS);
}

View File

@ -281,8 +281,8 @@ int main(int argc, char **argv)
" 2048 [options]\n"
"\n"
"Options:\n"
" -b <size> Set the grid border length\n"
" -s <rate> Set the block spawn rate\n");
" -s <size> Set the grid border length\n"
" -b <rate> Set the block spawn rate\n");
exit(EXIT_SUCCESS);
}
}