Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Nelson a5bc252d69
Merge f9988abf32 into 9121770582 2024-04-24 16:32:41 +09:00
Peter Nelson f9988abf32
Fix #12497: [NewGRF] Increase vehicle motion counter for all parts.
NewGRFs relied on the incorrectly motion counter that was 'fixed' in #12229, so always update v->motion_counter for all vehicle parts.
2024-04-23 20:50:09 +01:00
1 changed files with 3 additions and 1 deletions

View File

@ -1033,6 +1033,9 @@ void CallVehicleTicks()
/* Do not play any sound when stopped */
if ((front->vehstatus & VS_STOPPED) && (front->type != VEH_TRAIN || front->cur_speed == 0)) continue;
/* Update motion counter for animation purposes. */
v->motion_counter += front->cur_speed;
/* Check vehicle type specifics */
switch (v->type) {
case VEH_TRAIN:
@ -1051,7 +1054,6 @@ void CallVehicleTicks()
break;
}
v->motion_counter += front->cur_speed;
/* Play a running sound if the motion counter passes 256 (Do we not skip sounds?) */
if (GB(v->motion_counter, 0, 8) < front->cur_speed) PlayVehicleSound(v, VSE_RUNNING);