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 | ee97db70c51760518c47210022569019754dfb65 (patch) | |
tree | 18009480f4341e496c242cab0cd0c478b25fdf27 | |
parent | 265e2438321cf64c47b1506eb74b44d6f19e5b6b (diff) | |
download | openttd-ee97db70c51760518c47210022569019754dfb65.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 |