summaryrefslogtreecommitdiff
path: root/src/table/sprites.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2021-03-10 22:48:47 +0100
committerfrosch <github@elsenhans.name>2021-03-11 00:21:09 +0100
commit28589db66473c73583d4b862bc9990e51af1521b (patch)
tree62bba09dc0d75f17f5e9146e92c69bbcb95e04c1 /src/table/sprites.h
parentc0b722ec46f13c04125fb122692aa975abe4f8d9 (diff)
downloadopenttd-28589db66473c73583d4b862bc9990e51af1521b.tar.xz
Fix: front/back sprites of action5 tram catenary were swapped.
Diffstat (limited to 'src/table/sprites.h')
-rw-r--r--src/table/sprites.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/sprites.h b/src/table/sprites.h
index 296254c78..9071e61dc 100644
--- a/src/table/sprites.h
+++ b/src/table/sprites.h
@@ -276,8 +276,8 @@ static const SpriteID SPR_TRAMWAY_PAVED_STRAIGHT_X = SPR_TRAMWAY_BASE + 47;
static const SpriteID SPR_TRAMWAY_DEPOT_WITH_TRACK = SPR_TRAMWAY_BASE + 49;
static const SpriteID SPR_TRAMWAY_BACK_WIRES_STRAIGHT = SPR_TRAMWAY_BASE + 55;
static const SpriteID SPR_TRAMWAY_FRONT_WIRES_STRAIGHT = SPR_TRAMWAY_BASE + 56;
-static const SpriteID SPR_TRAMWAY_BACK_WIRES_SLOPED = SPR_TRAMWAY_BASE + 72;
-static const SpriteID SPR_TRAMWAY_FRONT_WIRES_SLOPED = SPR_TRAMWAY_BASE + 68;
+static const SpriteID SPR_TRAMWAY_BACK_WIRES_SLOPED = SPR_TRAMWAY_BASE + 68;
+static const SpriteID SPR_TRAMWAY_FRONT_WIRES_SLOPED = SPR_TRAMWAY_BASE + 72;
static const SpriteID SPR_TRAMWAY_TUNNEL_WIRES = SPR_TRAMWAY_BASE + 80;
static const SpriteID SPR_TRAMWAY_BRIDGE = SPR_TRAMWAY_BASE + 107;
static const SpriteID SPR_TRAMWAY_DEPOT_NO_TRACK = SPR_TRAMWAY_BASE + 113;