summaryrefslogtreecommitdiff
path: root/src/texteff.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-06-21 13:31:41 +0000
committertruelight <truelight@openttd.org>2007-06-21 13:31:41 +0000
commite8f9332af940685e735bfdd9ae1f945a06a5a00e (patch)
tree933320e886eda6d3177383debf4805ff14f0b394 /src/texteff.cpp
parentedf68a04b043bcdd027f9a463ea52ef66c3afa6a (diff)
downloadopenttd-e8f9332af940685e735bfdd9ae1f945a06a5a00e.tar.xz
(svn r10244) -Fix: make sure to let 32bpp-anim report the increased buffer-size it needs
Diffstat (limited to 'src/texteff.cpp')
-rw-r--r--src/texteff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/texteff.cpp b/src/texteff.cpp
index af89f30b3..0a35973e1 100644
--- a/src/texteff.cpp
+++ b/src/texteff.cpp
@@ -55,7 +55,7 @@ static bool _textmessage_visible = false;
/* The chatbox grows from the bottom so the coordinates are pixels from
* the left and pixels from the bottom. The height is the maximum height */
static const Oblong _textmsg_box = {10, 30, 500, 150};
-static uint8 _textmessage_backup[150 * 500 * 5]; // (height * width)
+static uint8 _textmessage_backup[150 * 500 * 6]; // (height * width)
static inline uint GetTextMessageCount()
{