Skip to content

Commit

Permalink
Fixed the Linux hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed Dec 23, 2014
1 parent fcc28c6 commit 4f62ad7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BunnymodXT/modules/ClientDLL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ extern "C" int __cdecl Initialize(cl_enginefunc_t* pEnginefuncs, int iVersion)
return ClientDLL::HOOKED_Initialize(pEnginefuncs, iVersion);
}

extern "C" void __cdecl HUD_Redraw(float time, int intermission)
{
return ClientDLL::HOOKED_HUD_Redraw(time, intermission);
}

extern "C" void __cdecl _ZN4CHud4InitEv(void* thisptr)
{
return ClientDLL::HOOKED_CHud_Init(thisptr);
Expand Down

0 comments on commit 4f62ad7

Please sign in to comment.