aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJonathan Gray2003-01-19 03:35:17 +0000
committerJonathan Gray2003-01-19 03:35:17 +0000
commit3e50c97ca6373234df10747cb1d0ed08eb31ecdc (patch)
treeddee0f9c62bdd433b158bcb1fbe0cff61de4adec /scumm
parent1abc25817e89a07773b93cbbfbec1c08acc7a2da (diff)
downloadscummvm-rg350-3e50c97ca6373234df10747cb1d0ed08eb31ecdc.tar.gz
scummvm-rg350-3e50c97ca6373234df10747cb1d0ed08eb31ecdc.tar.bz2
scummvm-rg350-3e50c97ca6373234df10747cb1d0ed08eb31ecdc.zip
update assertion to be in line with increased blastTextQueue size
svn-id: r6509
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v8.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index aed8765920..fe4641e11e 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -568,7 +568,7 @@ void Scumm_v8::decodeParseString(int m, int n)
void Scumm::enqueueText(byte *text, int x, int y, byte color, byte charset, bool center)
{
BlastText &bt = _blastTextQueue[_blastTextQueuePos++];
- assert(_blastTextQueuePos <= 8);
+ assert(_blastTextQueuePos <= 32);
strcpy((char *)bt.text, (const char *)text);
bt.xpos = x;