gfxhook/gfx.c: Remove unused self parameter

This commit is contained in:
2021-12-21 23:32:33 -05:00
parent 798446ec79
commit cdbf6ad4e2
5 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,5 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
struct gfx_config {
@ -11,4 +9,4 @@ struct gfx_config {
int monitor;
};
void gfx_hook_init(const struct gfx_config *cfg, HINSTANCE self);
void gfx_hook_init(const struct gfx_config *cfg);