[Scummvm-cvs-logs] SF.net SVN: scummvm: [30795] scummvm/trunk/engines/parallaction/graphics. cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Tue Feb 5 10:26:29 CET 2008


Revision: 30795
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30795&view=rev
Author:   peres001
Date:     2008-02-05 01:26:28 -0800 (Tue, 05 Feb 2008)

Log Message:
-----------
Fixed size of temporary buffer for unpacking animation frames.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/graphics.cpp

Modified: scummvm/trunk/engines/parallaction/graphics.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/graphics.cpp	2008-02-05 09:25:25 UTC (rev 30794)
+++ scummvm/trunk/engines/parallaction/graphics.cpp	2008-02-05 09:26:28 UTC (rev 30795)
@@ -422,7 +422,8 @@
 
 }
 
-byte _unpackedBitmap[320*200];
+// this is the maximum size of an unpacked frame in BRA
+byte _unpackedBitmap[640*401];
 
 void Gfx::unpackBlt(const Common::Rect& r, byte *data, uint size, Graphics::Surface *surf, uint16 z, byte transparentColor) {
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list