original TheDig interpreter handles up to 200 blastObjects. Resized _blastObjectQueue accordingly, that should fix bugs #1364922 and #1356652.

svn-id: r19701
This commit is contained in:
Gregory Montoir 2005-11-24 23:46:46 +00:00
parent fe9def0ac0
commit 6d6def1042

View File

@ -533,7 +533,7 @@ protected:
}; };
int _blastObjectQueuePos; int _blastObjectQueuePos;
BlastObject _blastObjectQueue[128]; BlastObject _blastObjectQueue[200];
struct BlastText : TextObject { struct BlastText : TextObject {
Common::Rect rect; Common::Rect rect;