summaryrefslogtreecommitdiff
path: root/src/texteff.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-21 19:08:47 +0000
committerrubidium <rubidium@openttd.org>2007-06-21 19:08:47 +0000
commit0b34c9aefe342c6ffe11d2d4720d7c06c157e04d (patch)
treed3371ccdafc2ee276ac7c5cecc77a905283e656d /src/texteff.cpp
parentfb7964e90270d4471774a4625e5ef03dd7a6eae2 (diff)
downloadopenttd-0b34c9aefe342c6ffe11d2d4720d7c06c157e04d.tar.xz
(svn r10262) -Fix (r10258): some places that needed to be changed to uint64 were hidden/forgotten, which caused memory corruptions and that in caused all kinds of assertions to trigger.
Diffstat (limited to 'src/texteff.cpp')
-rw-r--r--src/texteff.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/texteff.cpp b/src/texteff.cpp
index ca3bdf4cf..e5c29a4c7 100644
--- a/src/texteff.cpp
+++ b/src/texteff.cpp
@@ -35,8 +35,8 @@ struct TextEffect {
int32 right;
int32 bottom;
uint16 duration;
- uint32 params_1;
- uint32 params_2;
+ uint64 params_1;
+ uint64 params_2;
TextEffectMode mode;
};