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 | 8d4ed0840b751a5e13c0d68e8883423745e8bb85 (patch) | |
tree | a312e8fe42aa625cbae5e19615706fe3ad08529c /table | |
parent | 02c96219cb71c8cdbf0c4d40db296a0164fb9b74 (diff) | |
download | openttd-8d4ed0840b751a5e13c0d68e8883423745e8bb85.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, |