Never forget the 'p'. (buildfix for 9a6fd52be8).

This commit is contained in:
Kyle Sanderson
2015-02-25 20:56:09 -08:00
parent 9a6fd52be8
commit c5bf9d0a07
+4 -4
View File
@@ -109,9 +109,9 @@ void SteamWorksForwards::OnGroupStatusResult(GSClientGroupStatus_t *pResponse)
return; return;
} }
this->pFOCGS->PushCell(pResonse->m_SteamIDUser.GetAccountID()); this->pFOCGS->PushCell(pResponse->m_SteamIDUser.GetAccountID());
this->pFOCGS->PushCell(pResonse->m_SteamIDGroup.GetAccountID()); this->pFOCGS->PushCell(pResponse->m_SteamIDGroup.GetAccountID());
this->pFOCGS->PushCell(pResonse->m_bMember); this->pFOCGS->PushCell(pResponse->m_bMember);
this->pFOCGS->PushCell(pResonse->m_bOfficer); this->pFOCGS->PushCell(pResponse->m_bOfficer);
this->pFOCGS->Execute(NULL); this->pFOCGS->Execute(NULL);
} }