diff options
author | rubidium <rubidium@openttd.org> | 2011-01-18 22:17:15 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-01-18 22:17:15 +0000 |
commit | 6c9078fd30097b38537a60fbecb9828da69c3517 (patch) | |
tree | 6601ea8e21edd22b54d054d94cd9c129f8162458 /src/aircraft_cmd.cpp | |
parent | d89095b3ecb9c326e169db33294efac9b818276a (diff) | |
download | openttd-6c9078fd30097b38537a60fbecb9828da69c3517.tar.xz |
(svn r21844) -Codechange: move documentation towards the code to make it more likely to be updates [a-c].
Diffstat (limited to 'src/aircraft_cmd.cpp')
-rw-r--r-- | src/aircraft_cmd.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index 419d96ff4..58a46e4ad 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -533,6 +533,11 @@ static void PlayAircraftSound(const Vehicle *v) } +/** + * Update cached values of an aircraft. + * Currently caches callback 36 max speed. + * @param v Vehicle + */ void UpdateAircraftCache(Aircraft *v) { uint max_speed = GetVehicleProperty(v, PROP_AIRCRAFT_SPEED, 0); |