summaryrefslogtreecommitdiff
path: root/src/dummy_land.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-01-14 19:57:49 +0000
committerpeter1138 <peter1138@openttd.org>2007-01-14 19:57:49 +0000
commitca9843424be6008d9b8019423f2ead65fdb75fe2 (patch)
treec62990da208a45b3bd1c7379a1835190458d5a49 /src/dummy_land.cpp
parentc04c2b28245770aa7729b818fb876cd23c880620 (diff)
downloadopenttd-ca9843424be6008d9b8019423f2ead65fdb75fe2.tar.xz
(svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
This lets us increase the sprite width from 14 to up to 29 bits, effectively nulling the old sprite limit. Table changes in next commit.
Diffstat (limited to 'src/dummy_land.cpp')
-rw-r--r--src/dummy_land.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dummy_land.cpp b/src/dummy_land.cpp
index aa9a72d99..29b321d83 100644
--- a/src/dummy_land.cpp
+++ b/src/dummy_land.cpp
@@ -10,7 +10,7 @@
static void DrawTile_Dummy(TileInfo *ti)
{
- DrawGroundSpriteAt(SPR_SHADOW_CELL, ti->x, ti->y, ti->z);
+ DrawGroundSpriteAt(SPR_SHADOW_CELL, PAL_NONE, ti->x, ti->y, ti->z);
}