1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

fix peep.c sign issues

This commit is contained in:
IntelOrca
2015-06-17 16:39:09 +01:00
parent 4ebf6dd913
commit dff788d1d8

View File

@@ -4381,7 +4381,7 @@ void peep_problem_warnings_update()
break;
case PEEP_THOUGHT_TYPE_HUNGRY: // 0x14
if (peep->guest_heading_to_ride_id == -1){
if (peep->guest_heading_to_ride_id == 0xFF){
hunger_counter++;
break;
}
@@ -4391,7 +4391,7 @@ void peep_problem_warnings_update()
break;
case PEEP_THOUGHT_TYPE_THIRSTY:
if (peep->guest_heading_to_ride_id == -1){
if (peep->guest_heading_to_ride_id == 0xFF){
thirst_counter++;
break;
}
@@ -4401,7 +4401,7 @@ void peep_problem_warnings_update()
break;
case PEEP_THOUGHT_TYPE_BATHROOM:
if (peep->guest_heading_to_ride_id == -1){
if (peep->guest_heading_to_ride_id == 0xFF){
bathroom_counter++;
break;
}