Fix UINT8 references to pSoldier->ubID to UINT16

This commit is contained in:
Asdow
2023-07-27 21:29:37 +03:00
parent 9fb4ef8607
commit 9ac53cac32
5 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -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 );