Skip to content

Commit

Permalink
debug cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Dec 29, 2023
1 parent ad38750 commit b84ab7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RFont.h
Original file line number Diff line number Diff line change
Expand Up @@ -789,10 +789,10 @@ size_t RFont_draw_text_len(RFont_font* font, const char* text, size_t len, float
#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242
#define GL_COMPILE_STATUS 0x8B81
#define GL_LINK_STATUS 0x8B82
#define GL_INFO_LOG_LENGTH 0x8B84
#define GL_INFO_LOG_LENGTH 0x8B84
#endif

void RFont_debugCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* userParam) {
void RFont_debugCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const char* message, const void* userParam) {
if (type != GL_DEBUG_TYPE_ERROR)
return;

Expand Down

0 comments on commit b84ab7b

Please sign in to comment.