aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2009-03-08 14:33:18 +0000
committerJohannes Schickel2009-03-08 14:33:18 +0000
commitde6f1ec597106f062cb1475844936693dd03cff3 (patch)
tree9d5fb1727c33dd6a36978f3d8dd89b0fa1b1c220 /engines/kyra
parentca2c1b35b4fe2f122387610924b578870bed544d (diff)
downloadscummvm-rg350-de6f1ec597106f062cb1475844936693dd03cff3.tar.gz
scummvm-rg350-de6f1ec597106f062cb1475844936693dd03cff3.tar.bz2
scummvm-rg350-de6f1ec597106f062cb1475844936693dd03cff3.zip
Oops, fix size argument to memset call.
svn-id: r39230
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/lol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp
index a0fafaa04f..f2ec3950fa 100644
--- a/engines/kyra/lol.cpp
+++ b/engines/kyra/lol.cpp
@@ -187,7 +187,7 @@ LoLEngine::LoLEngine(OSystem *system, const GameFlags &flags) : KyraEngine_v1(sy
_floatingMouseArrowControl = 0;
- memset(_activeTim, 0, sizeof(TIM));
+ memset(_activeTim, 0, sizeof(_activeTim));
memset(_activeVoiceFile, 0, sizeof(_activeVoiceFile));
memset(_openDoorState, 0, sizeof(_openDoorState));