update assertion to be in line with increased blastTextQueue size

svn-id: r6509
This commit is contained in:
Jonathan Gray 2003-01-19 03:35:17 +00:00
parent 1abc25817e
commit 3e50c97ca6

View file

@ -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;