1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-01 10:59:12 +00:00

(svn r10697) -Codechange: give a more sensible names to some of the unkX variables.

This commit is contained in:
rubidium
2007-07-26 15:37:19 +00:00
parent 02ab86631e
commit 5bd241eb5b
8 changed files with 27 additions and 27 deletions

View File

@@ -737,7 +737,7 @@ static void HandleBrokenRoadVeh(Vehicle *v)
if (!(v->vehstatus & VS_HIDDEN)) {
Vehicle *u = CreateEffectVehicleRel(v, 4, 4, 5, EV_BREAKDOWN_SMOKE);
if (u != NULL) u->u.special.unk0 = v->breakdown_delay * 2;
if (u != NULL) u->u.special.animation_state = v->breakdown_delay * 2;
}
}