From d7b15ac1cfd5411510dc98f389bb6cc25060f1d0 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Fri, 27 Mar 2020 18:45:37 +0100 Subject: [PATCH] Review TRACELOG() categories --- src/rlgl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rlgl.h b/src/rlgl.h index 6bf66cc20..2560f363e 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -1493,7 +1493,7 @@ void rlglInit(int width, int height) // Check OpenGL information and capabilities //------------------------------------------------------------------------------ // Print current OpenGL and GLSL version - TRACELOG(LOG_INFO, "GPU: OpenGL device information:"); + TRACELOG(LOG_INFO, "GL: OpenGL device information:"); TRACELOG(LOG_INFO, " > Vendor: %s", glGetString(GL_VENDOR)); TRACELOG(LOG_INFO, " > Renderer: %s", glGetString(GL_RENDERER)); TRACELOG(LOG_INFO, " > Version: %s", glGetString(GL_VERSION)); @@ -1746,7 +1746,7 @@ void rlglInit(int width, int height) RLGL.State.shapesTexture = GetTextureDefault(); RLGL.State.shapesTextureRec = (Rectangle){ 0.0f, 0.0f, 1.0f, 1.0f }; - TRACELOG(LOG_INFO, "GL: Default state initialized successfully"); + TRACELOG(LOG_INFO, "RLGL: Default state initialized successfully"); } // Vertex Buffer Object deinitialization (memory free)