Skip to content

Commit

Permalink
library: missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamcake committed Dec 13, 2024
1 parent 24844ed commit c8e621d
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 @@ -420,7 +420,7 @@ static void hook_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) {
LOG("glViewport end\n");
}

static hook_glBlendFunc(GLenum sfactor, GLenum dfactor) {
static void hook_glBlendFunc(GLenum sfactor, GLenum dfactor) {
LOG("glBlendFunc\n");
libgl.BlendFunc(sfactor, dfactor);
_bolt_gl_onBlendFunc(sfactor, dfactor);
Expand Down

0 comments on commit c8e621d

Please sign in to comment.