Tweak info prints

master
outfrost 2020-06-27 04:26:45 +02:00
parent 7712735f0e
commit b52deb3342
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ void init(EngineConfig config) {
logInfo("OpenGL %s", (const char*) glGetString(GL_VERSION));
logInfo("GLSL %s", (const char*) glGetString(GL_SHADING_LANGUAGE_VERSION));
logInfo("%s", (const char*) glGetString(GL_RENDERER));
logInfo("Renderer: %s", (const char*) glGetString(GL_RENDERER));
GLenum glewInitStatus = glewInit();
if (glewInitStatus != GLEW_OK) {
@ -65,7 +65,7 @@ void init(EngineConfig config) {
exit(EXIT_LIB_FAIL);
}
logInfo("Setting swap interval to %d", config.swapInterval);
logInfo("Setting swap interval: %d", config.swapInterval);
glfwSwapInterval(config.swapInterval);
int width, height;