diff options
author | michi_cc <michi_cc@openttd.org> | 2012-04-17 19:44:41 +0000 |
---|---|---|
committer | michi_cc <michi_cc@openttd.org> | 2012-04-17 19:44:41 +0000 |
commit | a2b2bc36205868f836fb2599c401cdfd4dfa7c1e (patch) | |
tree | e6d9f2e8c1613a932e4390aaf7b136e92ccb5187 /src/table | |
parent | 8b65e041ebd4104bba8b21fc0f9a2b8ff99c3414 (diff) | |
download | openttd-a2b2bc36205868f836fb2599c401cdfd4dfa7c1e.tar.xz |
(svn r24141) -Feature: Display rating in the town directory window. (Inspired by patch from MagicBuzz)
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/sprites.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/table/sprites.h b/src/table/sprites.h index 8320e2c52..db78222b2 100644 --- a/src/table/sprites.h +++ b/src/table/sprites.h @@ -56,7 +56,7 @@ static const SpriteID SPR_LARGE_SMALL_WINDOW = 682; /** Extra graphic spritenumbers */ static const SpriteID SPR_OPENTTD_BASE = 4896; -static const uint16 OPENTTD_SPRITE_COUNT = 162; +static const uint16 OPENTTD_SPRITE_COUNT = 166; /* Halftile-selection sprites */ static const SpriteID SPR_HALFTILE_SELECTION_FLAT = SPR_OPENTTD_BASE; @@ -147,6 +147,11 @@ static const SpriteID SPR_GROUP_REPLACE_OFF_ROADVEH = SPR_OPENTTD_BASE + 131; static const SpriteID SPR_GROUP_REPLACE_OFF_SHIP = SPR_OPENTTD_BASE + 132; static const SpriteID SPR_GROUP_REPLACE_OFF_AIRCRAFT = SPR_OPENTTD_BASE + 133; +static const SpriteID SPR_TOWN_RATING_NA = SPR_OPENTTD_BASE + 162; +static const SpriteID SPR_TOWN_RATING_APALLING = SPR_OPENTTD_BASE + 163; +static const SpriteID SPR_TOWN_RATING_MEDIOCRE = SPR_OPENTTD_BASE + 164; +static const SpriteID SPR_TOWN_RATING_GOOD = SPR_OPENTTD_BASE + 165; + static const SpriteID SPR_IMG_SWITCH_TOOLBAR = SPR_OPENTTD_BASE + 144; static const SpriteID SPR_SIGNALS_BASE = SPR_OPENTTD_BASE + OPENTTD_SPRITE_COUNT; |