diff options
author | Johannes Schickel | 2011-11-03 02:26:45 +0100 |
---|---|---|
committer | Johannes Schickel | 2011-11-03 02:26:45 +0100 |
commit | 3ad89a0d18f3cc1e20042288f37af99fedfabe0c (patch) | |
tree | 1bb53ee76b642508db26a9e20d1b8d25f722b7ba /engines | |
parent | 6d2e7228b5b8df4a9e16e36475196d2e16b4c634 (diff) | |
download | scummvm-rg350-3ad89a0d18f3cc1e20042288f37af99fedfabe0c.tar.gz scummvm-rg350-3ad89a0d18f3cc1e20042288f37af99fedfabe0c.tar.bz2 scummvm-rg350-3ad89a0d18f3cc1e20042288f37af99fedfabe0c.zip |
PARALLACTION: Fix memset size parameter.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/parallaction_br.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/parallaction_br.cpp b/engines/parallaction/parallaction_br.cpp index d850d406a2..658a8e8795 100644 --- a/engines/parallaction/parallaction_br.cpp +++ b/engines/parallaction/parallaction_br.cpp @@ -289,7 +289,7 @@ void Parallaction_br::changeLocation() { _disk->selectArchive(_partNames[_part]); - memset(_counters, 0, sizeof(*_counters)); + memset(_counters, 0, sizeof(_counters)); _globalFlagsNames = _disk->loadTable("global"); _objectsNames = _disk->loadTable("objects"); |