diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 95609a3e0b1..f227e134d13 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 98854f98d2c..a78131d29da 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 d19def663a0..2b97ab6480e 100644 --- a/engines/fullpipe/utils.h +++ b/engines/fullpipe/utils.h @@ -107,7 +107,7 @@ public: }; class ObList : public Common::List, public CObject { - public: +public: virtual bool load(MfcArchive &file); };