Added function comment header.

This commit is contained in:
Camilla Berglund 2010-09-13 16:25:44 +02:00
parent a95279e63d
commit 2b8e19d798

View File

@ -33,6 +33,10 @@
#include <stdlib.h> #include <stdlib.h>
//========================================================================
// Lexical comparison function for GLFW video modes, used by qsort
//========================================================================
static int compareVideoModes(const void* firstPtr, const void* secondPtr) static int compareVideoModes(const void* firstPtr, const void* secondPtr)
{ {
GLFWvidmode* first = (GLFWvidmode*) firstPtr; GLFWvidmode* first = (GLFWvidmode*) firstPtr;