Skip to content
Snippets Groups Projects
Commit b404c965 authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

Update lua_hooklib.c

You need to "void" the functions
parent 79aaf3e6
No related branches found
No related tags found
2 merge requests!2355fix newer versions of mixerx,!1932Implement perfstats options for LUAh_PreThinkFrame and LUAh_PostThinkFrame
......@@ -718,17 +718,17 @@ static void hook_think_frame(int type)
}
}
void LUA_HookPreThinkFrame()
void LUA_HookPreThinkFrame(void)
{
hook_think_frame(HOOK(PreThinkFrame));
}
void LUA_HookThinkFrame()
void LUA_HookThinkFrame(void)
{
hook_think_frame(HOOK(ThinkFrame));
}
void LUA_HookPostThinkFrame()
void LUA_HookPostThinkFrame(void)
{
hook_think_frame(HOOK(PostThinkFrame));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment