diff options
author | tron <tron@openttd.org> | 2005-10-14 08:11:18 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-10-14 08:11:18 +0000 |
commit | f97d1274bc13b976aeec0d346f6dc06f3b4072c6 (patch) | |
tree | a312e8fe42aa625cbae5e19615706fe3ad08529c /table | |
parent | 1667628659739506b0784b92e6fee23c12e73c4f (diff) | |
download | openttd-f97d1274bc13b976aeec0d346f6dc06f3b4072c6.tar.xz |
(svn r3040) Don't deduce the cursor sprites when building rails from magic numbers, but fetch them from the central rail info array.
Diffstat (limited to 'table')
-rw-r--r-- | table/sprites.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/table/sprites.h b/table/sprites.h index 442282b33..cb2e0c1b9 100644 --- a/table/sprites.h +++ b/table/sprites.h @@ -936,15 +936,22 @@ typedef enum CursorSprites { SPR_CURSOR_RAIL_DEPOT = 1296, SPR_CURSOR_RAIL_STATION = 1300, + SPR_CURSOR_TUNNEL_RAIL = 2434, SPR_CURSOR_TUNNEL_MONO = 2435, SPR_CURSOR_TUNNEL_MAGLEV = 2436, SPR_CURSOR_AUTORAIL = SPR_OPENTTD_BASE + 4, + SPR_CURSOR_AUTOMONO = SPR_OPENTTD_BASE + 5, + SPR_CURSOR_AUTOMAGLEV = SPR_OPENTTD_BASE + 6, + SPR_CURSOR_WAYPOINT = SPR_OPENTTD_BASE + 7, SPR_CURSOR_MONO_DEPOT = SPR_OPENTTD_BASE + 14, SPR_CURSOR_MAGLEV_DEPOT = SPR_OPENTTD_BASE + 15, + SPR_CURSOR_CONVERT_RAIL = SPR_OPENTTD_BASE + 26, + SPR_CURSOR_CONVERT_MONO = SPR_OPENTTD_BASE + 28, + SPR_CURSOR_CONVERT_MAGLEV = SPR_OPENTTD_BASE + 30, /* road cursors */ SPR_CURSOR_ROAD_NESW = 1311, |