diff options
author | rubidium <rubidium@openttd.org> | 2007-07-24 17:01:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-24 17:01:23 +0000 |
commit | 59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b (patch) | |
tree | 08ce082e1855582f3c9d1c228a0928e71c054c80 /src/bridge.h | |
parent | 9c9fc1a79ef08d1c3822bc7a4a1373d84dbfa70b (diff) | |
download | openttd-59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b.tar.xz |
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
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 27e47af3b..76fc6934e 100644 --- a/src/bridge.h +++ b/src/bridge.h @@ -35,6 +35,6 @@ static inline const Bridge *GetBridge(uint i) return &_bridge[i]; } -void DrawBridgeMiddle(const TileInfo* ti); +void DrawBridgeMiddle(const TileInfo *ti); #endif /* BRIDGE_H */ |