mirror of
https://github.com/1dot13/source.git
synced 2026-08-26 14:30:26 +02:00
Fix UINT8 references to pSoldier->ubID to UINT16
This commit is contained in:
@@ -392,10 +392,10 @@ BOOLEAN ExecuteStrategicEvent( STRATEGICEVENT *pEvent )
|
||||
HandleEnricoEmail();
|
||||
break;
|
||||
case EVENT_INSURANCE_INVESTIGATION_STARTED:
|
||||
StartInsuranceInvestigation( (UINT8) pEvent->uiParam );
|
||||
StartInsuranceInvestigation( (UINT16) pEvent->uiParam );
|
||||
break;
|
||||
case EVENT_INSURANCE_INVESTIGATION_OVER:
|
||||
EndInsuranceInvestigation( (UINT8) pEvent->uiParam );
|
||||
EndInsuranceInvestigation( (UINT16) pEvent->uiParam );
|
||||
break;
|
||||
case EVENT_TEMPERATURE_UPDATE:
|
||||
UpdateTemperature( (UINT8) pEvent->uiParam );
|
||||
|
||||
Reference in New Issue
Block a user