From a514927381bbbde60538042db28e77f5da04780b Mon Sep 17 00:00:00 2001 From: Alyssa Milburn Date: Wed, 17 Apr 2013 23:19:47 +0200 Subject: PARALLACTION: Fix buffer size in unpackBackground. --- engines/parallaction/disk_ns.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/parallaction/disk_ns.cpp b/engines/parallaction/disk_ns.cpp index f03f16ca37..4c4893ec61 100644 --- a/engines/parallaction/disk_ns.cpp +++ b/engines/parallaction/disk_ns.cpp @@ -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; -- cgit v1.2.3