Made listing the default for modes test.

This commit is contained in:
Camilla Berglund 2012-05-07 00:29:36 +02:00
parent 6ff3936101
commit 3d5a574e3b

View File

@ -38,15 +38,13 @@ static GLFWwindow window = NULL;
enum Mode
{
NO_MODE,
LIST_MODE,
TEST_MODE
};
static void usage(void)
{
printf("Usage: modes -l\n");
printf(" modes -t\n");
printf("Usage: modes [-t]\n");
printf(" modes -h\n");
}
@ -170,19 +168,16 @@ static void test_modes(GLFWvidmode* modes, int count)
int main(int argc, char** argv)
{
int ch, found, count = 0, mode = NO_MODE;
int ch, found, count = 0, mode = LIST_MODE;
GLFWvidmode* modes = NULL;
while ((ch = getopt(argc, argv, "lth")) != -1)
while ((ch = getopt(argc, argv, "th")) != -1)
{
switch (ch)
{
case 'h':
usage();
exit(EXIT_SUCCESS);
case 'l':
mode = LIST_MODE;
break;
case 't':
mode = TEST_MODE;
break;