Skip to content

Commit

Permalink
Merge branch 'master' into induction_1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Jul 21, 2024
2 parents c16868a + 65ba93a commit d383de2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cl_dll/cdll_int.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ int DLLEXPORT HUD_GetHullBounds( int hullnumber, float *mins, float *maxs );
void DLLEXPORT HUD_Frame( double time );
void DLLEXPORT HUD_VoiceStatus(int entindex, qboolean bTalking);
void DLLEXPORT HUD_DirectorMessage( int iSize, void *pbuf );
void DLLEXPORT HUD_MobilityInterface( mobile_engfuncs_t *gpMobileEngfuncs );
int DLLEXPORT HUD_MobilityInterface( mobile_engfuncs_t *gpMobileEngfuncs );
}

/*
Expand Down Expand Up @@ -392,11 +392,12 @@ void DLLEXPORT HUD_DirectorMessage( int iSize, void *pbuf )
gHUD.m_Spectator.DirectorMessage( iSize, pbuf );
}

void DLLEXPORT HUD_MobilityInterface( mobile_engfuncs_t *gpMobileEngfuncs )
int DLLEXPORT HUD_MobilityInterface( mobile_engfuncs_t *gpMobileEngfuncs )
{
if( gpMobileEngfuncs->version != MOBILITY_API_VERSION )
return;
return 1;
gMobileEngfuncs = gpMobileEngfuncs;
return 0;
}

bool HUD_MessageBox( const char *msg )
Expand Down

0 comments on commit d383de2

Please sign in to comment.