Minor style fixup

This commit is contained in:
Zachary Lund
2014-01-04 01:37:00 -06:00
parent 8df5293be1
commit fee0d9a8f3

View File

@@ -69,9 +69,9 @@ static void gl_enable_debug()
if (GLEW_VERSION_4_0)
glDebugMessageCallback(gl_debug_proc, NULL);
else if (GLEW_ARB_debug_output) {
else if (GLEW_ARB_debug_output)
glDebugMessageCallbackARB(gl_debug_proc, NULL);
} else {
else {
blog(LOG_DEBUG, "Failed to set GL debug callback as it is not supported.");
return;
}