PARALLACTION: Fix buffer size in unpackBackground.

This commit is contained in:
Alyssa Milburn 2013-04-17 23:19:47 +02:00
parent 98934898cf
commit a514927381

View File

@ -394,7 +394,7 @@ Frames* DosDisk_ns::loadFrames(const char* name) {
- path data [bit 8] (walkable areas)
*/
void DosDisk_ns::unpackBackground(Common::ReadStream *stream, byte *screen, byte *mask, byte *path) {
byte storage[127];
byte storage[128];
uint32 storageLen = 0, len = 0;
uint32 j = 0;