aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/fullpipe/gfx.cpp2
-rw-r--r--engines/fullpipe/statics.cpp2
-rw-r--r--engines/fullpipe/utils.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 95609a3e0b..f227e134d1 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -512,7 +512,7 @@ bool Picture::load(MfcArchive &file) {
setAOIDs();
}
- assert (g_fp->_gameProjectVersion >= 12);
+ assert(g_fp->_gameProjectVersion >= 12);
_alpha = file.readUint32LE() & 0xff;
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index 98854f98d2..a78131d29d 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -1497,7 +1497,7 @@ Movement::~Movement() {
for (uint i = 0; i < _dynamicPhases.size(); i++)
delete _framePosOffsets[i];
- if (!_currMovement ) {
+ if (!_currMovement) {
if (_updateFlag1) {
_dynamicPhases[0]->freePixelData();
_dynamicPhases.remove_at(0);
diff --git a/engines/fullpipe/utils.h b/engines/fullpipe/utils.h
index d19def663a..2b97ab6480 100644
--- a/engines/fullpipe/utils.h
+++ b/engines/fullpipe/utils.h
@@ -107,7 +107,7 @@ public:
};
class ObList : public Common::List<CObject *>, public CObject {
- public:
+public:
virtual bool load(MfcArchive &file);
};