mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 06:15:04 +00:00
(svn r6717) -Codechange: move OPENTTD_SPRITES_COUNT into table/sprites.h to use it from there.
This commit is contained in:
parent
3a94561f25
commit
9c611b0848
@ -265,7 +265,6 @@ static const SpriteID trg1idx[] = {
|
||||
* the old sprite-count offset from SPR_OPENTTD_BASE. With this there is no
|
||||
* correspondence of any kind with the ID's in the grf file, but results in
|
||||
* a maximum use of sprite slots. */
|
||||
#define OPENTTD_SPRITES_COUNT 109
|
||||
static const SpriteID _openttd_grf_indexes[] = {
|
||||
SPR_IMG_AUTORAIL, SPR_CURSOR_WAYPOINT, // icons etc
|
||||
134, 134, // euro symbol medium size
|
||||
|
@ -48,6 +48,7 @@ enum Sprites {
|
||||
SPR_ASCII_SPACE_BIG = 450,
|
||||
|
||||
/* Extra graphic spritenumbers */
|
||||
OPENTTD_SPRITES_COUNT = 109, // number of gfx-sprites in openttd.grf
|
||||
SPR_CANALS_BASE = 5382,
|
||||
SPR_SLOPES_BASE = SPR_CANALS_BASE + 70,
|
||||
SPR_AUTORAIL_BASE = SPR_SLOPES_BASE + 78,
|
||||
@ -94,7 +95,7 @@ enum Sprites {
|
||||
SPR_LOCK = SPR_OPENTTD_BASE + 19, // lock icon (for password protected servers)
|
||||
SPR_FLAGS_BASE = SPR_OPENTTD_BASE + 83, // start of the flags block (in same order as enum NetworkLanguage)
|
||||
|
||||
SPR_AIRPORTX_BASE = SPR_OPENTTD_BASE + 109, // The sprites used for other airport angles
|
||||
SPR_AIRPORTX_BASE = SPR_OPENTTD_BASE + OPENTTD_SPRITES_COUNT, // The sprites used for other airport angles
|
||||
SPR_NEWAIRPORT_TARMAC = SPR_AIRPORTX_BASE,
|
||||
SPR_NSRUNWAY1 = SPR_AIRPORTX_BASE + 1,
|
||||
SPR_NSRUNWAY2 = SPR_AIRPORTX_BASE + 2,
|
||||
|
Loading…
Reference in New Issue
Block a user