Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
fokkonaut committed Feb 11, 2020
1 parent 01dc689 commit d1f0322
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/server/gamecontext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ void CGameContext::OnClientPredictedInput(int ClientID, void *pInput)
}
}

class CVoteOptionServer *CGameContext::GetVoteOption(int Index)
struct CVoteOptionServer *CGameContext::GetVoteOption(int Index)
{
CVoteOptionServer *pCurrent;
for (pCurrent = m_pVoteOptionFirst;
Expand Down
2 changes: 1 addition & 1 deletion src/game/server/gamecontext.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class CGameContext : public IGameServer
void CheckPureTuning();
void SendTuningParams(int ClientID, int Zone = 0);

class CVoteOptionServer *GetVoteOption(int Index);
struct CVoteOptionServer *GetVoteOption(int Index);
void ProgressVoteOptions(int ClientID);

void LoadMapSettings();
Expand Down

0 comments on commit d1f0322

Please sign in to comment.