forked from TeamTofuShop/segatools
gfxhook/gfx.c: Remove unused self parameter
This commit is contained in:
@ -26,7 +26,7 @@ static const struct hook_symbol gfx_hooks[] = {
|
||||
},
|
||||
};
|
||||
|
||||
void gfx_hook_init(const struct gfx_config *cfg, HINSTANCE self)
|
||||
void gfx_hook_init(const struct gfx_config *cfg)
|
||||
{
|
||||
assert(cfg != NULL);
|
||||
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user