Removed paranoid error check.

This commit is contained in:
Camilla Berglund
2012-09-12 23:03:07 +02:00
parent 4f8f6c7d89
commit b4493dd3bc
2 changed files with 1 additions and 7 deletions
+1 -1
View File
@@ -41,7 +41,7 @@
// Lexical comparison function for GLFW video modes, used by qsort
//========================================================================
int compareVideoModes(const void* firstPtr, const void* secondPtr)
static int compareVideoModes(const void* firstPtr, const void* secondPtr)
{
int firstBPP, secondBPP, firstSize, secondSize;
GLFWvidmode* first = (GLFWvidmode*) firstPtr;