diff options
author | rubidium <rubidium@openttd.org> | 2007-07-26 16:51:10 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-26 16:51:10 +0000 |
commit | 903a0a08c2ca853d8eeb3aa00caf7afa7faf53de (patch) | |
tree | 4b6a986aa841f12efff161e45aacd1a023cff71d /src/bridge.h | |
parent | a67957866a9006e05158b9735b228bd5b93390a0 (diff) | |
download | openttd-903a0a08c2ca853d8eeb3aa00caf7afa7faf53de.tar.xz |
(svn r10698) -Codechange [FS#1082]: simplify the code related to foundations. Primarily removal of (duplicated|magic) code and introduction of few helper functions to ease foundation determination. Patch by frosch.
Diffstat (limited to 'src/bridge.h')
-rw-r--r-- | src/bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bridge.h b/src/bridge.h index 76fc6934e..6565f983f 100644 --- a/src/bridge.h +++ b/src/bridge.h @@ -27,7 +27,7 @@ struct Bridge { extern const Bridge orig_bridge[MAX_BRIDGES]; extern Bridge _bridge[MAX_BRIDGES]; -uint GetBridgeFoundation(Slope tileh, Axis axis); +Foundation GetBridgeFoundation(Slope tileh, Axis axis); static inline const Bridge *GetBridge(uint i) { |