aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/anim.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/anim.cpp')
-rw-r--r--engines/cine/anim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/anim.cpp b/engines/cine/anim.cpp
index 11ea4ea25c..049f22e7cf 100644
--- a/engines/cine/anim.cpp
+++ b/engines/cine/anim.cpp
@@ -208,7 +208,7 @@ AnimData::AnimData(const AnimData &src) : _width(src._width),
memcpy(_data, src._data, _size*sizeof(byte));
}
- if(src._mask) {
+ if (src._mask) {
_mask = new byte[_size];
assert(_mask);
memcpy(_mask, src._mask, _size*sizeof(byte));