Skip to content
Snippets Groups Projects
Commit 5b650bc9 authored by sphere's avatar sphere
Browse files

Merge branch 'diddy-kong' into 'master'

Remove MODID check from hooklib to fix compile issue (resolves #809)

See merge request STJr/SRB2!1758
parents 65d47ba3 86336d6b
No related branches found
No related tags found
1 merge request!1758Remove MODID check from hooklib to fix compile issue (resolves #809)
......@@ -246,7 +246,6 @@ int LUA_HookLib(lua_State *L)
}
/* TODO: remove in next backwards incompatible release */
#if MODID == 18
int lib_hudadd(lua_State *L);/* yeah compiler */
int lib_hudadd(lua_State *L)
{
......@@ -260,7 +259,6 @@ int lib_hudadd(lua_State *L)
return 0;
}
#endif
typedef struct Hook_State Hook_State;
typedef void (*Hook_Callback)(Hook_State *);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment