From c90bdfa6f46403ccf27d7ae5e2283381f61507ac Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 11 May 2016 18:42:37 +0200 Subject: [PATCH] SCUMM HE: Fix FOW condition bits size --- engines/scumm/he/moonbase/moonbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/scumm/he/moonbase/moonbase.h b/engines/scumm/he/moonbase/moonbase.h index 6b0d2e0d0d58..e82ae0164f81 100644 --- a/engines/scumm/he/moonbase/moonbase.h +++ b/engines/scumm/he/moonbase/moonbase.h @@ -56,7 +56,7 @@ class Moonbase { public: int _fowSentinelImage; int _fowSentinelState; - uint16 _fowSentinelConditionBits; + uint32 _fowSentinelConditionBits; private: ScummEngine_v71he *_vm;