Merge pull request #3 from VoiDeD/master

Fix compilation issue with BeginAuthSession forward.
This commit is contained in:
KyleSanderson
2014-04-05 13:19:16 -06:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ void SteamWorksGSHooks::LogOnAnonymous(void)
EBeginAuthSessionResult SteamWorksGSHooks::BeginAuthSession(const void *pAuthTicket, int cbAuthTicket, CSteamID steamID)
{
if (this->pOBAS->GetFunctionCount != 0)
if (this->pOBAS->GetFunctionCount() != 0)
{
this->pOBAS->PushArray(pAuthTicket, cbAuthTicket);
this->pOBAS->PushCell(cbAuthTicket);
+1
View File
@@ -41,6 +41,7 @@ class SteamWorksGSHooks
private:
IForward *pFORR; /* On Restart Requested. */
IForward *pFOTR; /* On Token Requested. */
IForward *pOBAS; /* On Begin Auth Session. */
unsigned char uHooked;
};