more warning fixes
This commit is contained in:
@ -174,7 +174,7 @@ void PlayerPreThink_Post( edict_t *pEntity ) {
|
||||
}
|
||||
|
||||
if (pPlayer->sendScore && pPlayer->sendScore < gpGlobals->time){
|
||||
pPlayer->sendScore = 0.0f;
|
||||
pPlayer->sendScore = 0;
|
||||
MF_ExecuteForward( iFScore,pPlayer->index, pPlayer->lastScore, pPlayer->savedScore );
|
||||
}
|
||||
|
||||
|
@ -88,10 +88,10 @@ void Client_ObjScore(void* mValue)
|
||||
break;
|
||||
case 1:
|
||||
score = *(int*)mValue;
|
||||
if ( (pPlayer->lastScore = score - pPlayer->savedScore) && isModuleActive() )
|
||||
if ( (pPlayer->lastScore = score - (int)(pPlayer->savedScore)) && isModuleActive() )
|
||||
{
|
||||
pPlayer->updateScore(pPlayer->current,pPlayer->lastScore);
|
||||
pPlayer->sendScore = gpGlobals->time + 0.25f;
|
||||
pPlayer->sendScore = (int)(gpGlobals->time + 0.25f);
|
||||
}
|
||||
pPlayer->savedScore = score;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user