1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Added hilighting of desktop mode.

This commit is contained in:
Camilla Berglund 2012-05-07 01:13:07 +02:00
parent d109d8a6d2
commit 5527e52f58

View File

@ -30,6 +30,7 @@
#include <GL/glfw3.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "getopt.h"
@ -118,6 +119,10 @@ static void list_modes(void)
{
printf("%3u: ", (unsigned int) i);
print_mode(modes + i);
if (memcmp(&desktop_mode, modes + i, sizeof(GLFWvidmode)) == 0)
printf(" (desktop mode)");
putchar('\n');
}