summaryrefslogtreecommitdiff
path: root/src/newgrf_spritegroup.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-09-22 23:55:34 +0000
committerrubidium <rubidium@openttd.org>2007-09-22 23:55:34 +0000
commit240285b8d85be6ef852639073e5e2625e61b71b0 (patch)
tree5340ffd36488542b738acc4e6c6c80a223189d8a /src/newgrf_spritegroup.h
parentaa020847af7b31bbbcb665b3ef9463c26b6bc339 (diff)
downloadopenttd-240285b8d85be6ef852639073e5e2625e61b71b0.tar.xz
(svn r11145) -Codechange: add support for "decoding" TTDPs string codes wrt to registers 0x100 to 0x10F.
Diffstat (limited to 'src/newgrf_spritegroup.h')
-rw-r--r--src/newgrf_spritegroup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h
index 3f84b9af9..496ce5c36 100644
--- a/src/newgrf_spritegroup.h
+++ b/src/newgrf_spritegroup.h
@@ -17,7 +17,7 @@
*/
static inline uint32 GetRegister(uint i)
{
- extern TemporaryStorageArray<uint, 0x110> _temp_store;
+ extern TemporaryStorageArray<uint32, 0x110> _temp_store;
return _temp_store.Get(i);
}