aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/animator_v2.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2011-12-27 02:23:49 +0100
committerJohannes Schickel2011-12-27 02:37:25 +0100
commitc96e5de291ed686ea49ba312113d2fc0d343302d (patch)
treeb0f10b71db74bc43e252400fccba14f2e0c0543e /engines/kyra/animator_v2.cpp
parent1a5026570af441dd4e9e95ba507a9f6b3e0bebbf (diff)
downloadscummvm-rg350-c96e5de291ed686ea49ba312113d2fc0d343302d.tar.gz
scummvm-rg350-c96e5de291ed686ea49ba312113d2fc0d343302d.tar.bz2
scummvm-rg350-c96e5de291ed686ea49ba312113d2fc0d343302d.zip
KYRA: Some formatting fixes.
Diffstat (limited to 'engines/kyra/animator_v2.cpp')
-rw-r--r--engines/kyra/animator_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/animator_v2.cpp b/engines/kyra/animator_v2.cpp
index 334356e261..f7ae6749cf 100644
--- a/engines/kyra/animator_v2.cpp
+++ b/engines/kyra/animator_v2.cpp
@@ -26,10 +26,10 @@
namespace Kyra {
void KyraEngine_v2::allocAnimObjects(int actors, int anims, int items) {
- _animObjects = new AnimObj[actors+anims+items];
+ _animObjects = new AnimObj[actors + anims + items];
assert(_animObjects);
- memset(_animObjects, 0, sizeof(AnimObj)*(actors+anims+items));
+ memset(_animObjects, 0, sizeof(AnimObj) * (actors + anims + items));
_animActor = _animObjects;
_animAnims = _animObjects + actors;