diff options
author | Johannes Schickel | 2009-03-08 14:33:18 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-03-08 14:33:18 +0000 |
commit | de6f1ec597106f062cb1475844936693dd03cff3 (patch) | |
tree | 9d5fb1727c33dd6a36978f3d8dd89b0fa1b1c220 /engines/kyra | |
parent | ca2c1b35b4fe2f122387610924b578870bed544d (diff) | |
download | scummvm-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.cpp | 2 |
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)); |