mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
_Properly_ fix lock-up introduced introduced in revision 29860. A typical
c/p error. svn-id: r29982
This commit is contained in:
parent
fd22ebb269
commit
6b722c2f1c
@ -128,11 +128,11 @@ void CineEngine::initialize() {
|
||||
loadErrmessDat("errmess.dat");
|
||||
}
|
||||
|
||||
memset(objectTable, 0, ARRAYSIZE(objectTable));
|
||||
memset(globalVars, 0, ARRAYSIZE(globalVars));
|
||||
memset(scriptTable, 0, ARRAYSIZE(scriptTable));
|
||||
memset(messageTable, 0, ARRAYSIZE(scriptTable));
|
||||
memset(relTable, 0, ARRAYSIZE(scriptTable));
|
||||
memset(objectTable, 0, sizeof(objectTable));
|
||||
memset(globalVars, 0, sizeof(globalVars));
|
||||
memset(scriptTable, 0, sizeof(scriptTable));
|
||||
memset(messageTable, 0, sizeof(messageTable));
|
||||
memset(relTable, 0, sizeof(relTable));
|
||||
|
||||
for (int i = 0; i < NUM_MAX_ANIMDATA; i++) {
|
||||
animDataTable[i].ptr1 = animDataTable[i].ptr2 = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user