aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_lok.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2011-11-04 20:10:27 +0100
committerJohannes Schickel2011-11-04 20:15:05 +0100
commit3c4bb827996e28504f9744a501295b17bef7e32d (patch)
tree0e2a5545a41f8d2c9eb37d00d93f443e7a0a2a8e /engines/kyra/kyra_lok.cpp
parente0faee40b8bedb85ed9987417924add8dc55d97d (diff)
downloadscummvm-rg350-3c4bb827996e28504f9744a501295b17bef7e32d.tar.gz
scummvm-rg350-3c4bb827996e28504f9744a501295b17bef7e32d.tar.bz2
scummvm-rg350-3c4bb827996e28504f9744a501295b17bef7e32d.zip
KYRA: Use "0xFF" instead of "0xFFFF" as memset's second parameter.
Diffstat (limited to 'engines/kyra/kyra_lok.cpp')
-rw-r--r--engines/kyra/kyra_lok.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/kyra_lok.cpp b/engines/kyra/kyra_lok.cpp
index 27d0849e5f..601ae8f10c 100644
--- a/engines/kyra/kyra_lok.cpp
+++ b/engines/kyra/kyra_lok.cpp
@@ -254,7 +254,7 @@ Common::Error KyraEngine_LoK::init() {
_poisonDeathCounter = 0;
memset(_itemHtDat, 0, sizeof(_itemHtDat));
- memset(_exitList, 0xFFFF, sizeof(_exitList));
+ memset(_exitList, 0xFF, sizeof(_exitList));
_exitListPtr = 0;
_pathfinderFlag = _pathfinderFlag2 = 0;
_lastFindWayRet = 0;