report_errors_loop() needs to return a value

This commit is contained in:
Joseph Lee 2004-03-03 03:59:37 +00:00
parent 02a1103540
commit 69ffcae6ff
1 changed files with 1 additions and 1 deletions

View File

@ -2649,8 +2649,8 @@ report_errors_loop(int line, const char *source_file, GLenum error_code,
error_count++;
}
return (error_code == GL_NO_ERROR);
#endif
return (error_code == GL_NO_ERROR);
}
////////////////////////////////////////////////////////////////////