View Single Post
Re: Yapb 2 compile error
Old
  (#2)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 453
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: Yapb 2 compile error - 26-06-2006

As i say, i'm not a linux user and do dev under MSVC!

Change:
Code:
pfnPlayer = reinterpret_cast <ENTITY_FN> (GetProcSymbol (g_hGameLib, "player"));
to
Code:
pfnPlayer = (ENTITY_FN) GetProcSymbol (g_hGameLib, "player");
  
Reply With Quote