Skip to content

Commit

Permalink
library: incorrect log/logf usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamcake committed Jan 6, 2025
1 parent f42224a commit 85cba45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/dll/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ static void hook_glDrawArrays(GLenum mode, GLint first, GLsizei count) {
}

static void hook_glBindTexture(GLenum target, GLuint texture) {
LOG("glBindTexture(%u, %u)\n", target, texture);
LOGF("glBindTexture(%u, %u)\n", target, texture);
libgl.BindTexture(target, texture);
_bolt_gl_onBindTexture(target, texture);
LOG("glBindTexture end\n");
Expand Down

0 comments on commit 85cba45

Please sign in to comment.