diff options
author | celestar <celestar@openttd.org> | 2005-07-02 13:03:56 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2005-07-02 13:03:56 +0000 |
commit | edf89d79507c010873cba435d481ecdde280ba97 (patch) | |
tree | 18009480f4341e496c242cab0cd0c478b25fdf27 | |
parent | c6287f942d403dd987df895042c4b1a455227794 (diff) | |
download | openttd-edf89d79507c010873cba435d481ecdde280ba97.tar.xz |
(svn r2507) -Fix: Forgot to change an enum in rail.h in r2499 (thanks blathijs for
pointing it out)
-rw-r--r-- | rail.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ typedef enum RailTypes { } RailType; enum { - SIG_SEMAPHORE_MASK = 4, + SIG_SEMAPHORE_MASK = 1 << 3, }; /* These are used to specify a single track. Can be translated to a trackbit |