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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user