update assertion to be in line with increased blastTextQueue size
svn-id: r6509
This commit is contained in:
parent
1abc25817e
commit
3e50c97ca6
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
void Scumm::enqueueText(byte *text, int x, int y, byte color, byte charset, bool center)
|
||||||
{
|
{
|
||||||
BlastText &bt = _blastTextQueue[_blastTextQueuePos++];
|
BlastText &bt = _blastTextQueue[_blastTextQueuePos++];
|
||||||
assert(_blastTextQueuePos <= 8);
|
assert(_blastTextQueuePos <= 32);
|
||||||
|
|
||||||
strcpy((char *)bt.text, (const char *)text);
|
strcpy((char *)bt.text, (const char *)text);
|
||||||
bt.xpos = x;
|
bt.xpos = x;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue