Fix compilation issue with BeginAuthSession forward.

This commit is contained in:
Ryan Stecker
2014-04-05 14:14:45 -05:00
parent 9183ae8b68
commit a45e33863b
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;
};