diff options
author | Colin Snover | 2017-11-12 13:45:41 -0600 |
---|---|---|
committer | Eugene Sandulenko | 2017-11-18 22:35:12 +0100 |
commit | 8e0c53de180d2e0de613934f1dedbfd4aa5fdf7c (patch) | |
tree | 150f58315e17198f2b54250fbada20707edea2b2 | |
parent | 88a2eaba93a454562b99bd59f797533b9f6b4848 (diff) | |
download | scummvm-rg350-8e0c53de180d2e0de613934f1dedbfd4aa5fdf7c.tar.gz scummvm-rg350-8e0c53de180d2e0de613934f1dedbfd4aa5fdf7c.tar.bz2 scummvm-rg350-8e0c53de180d2e0de613934f1dedbfd4aa5fdf7c.zip |
FULLPIPE: Fix whitespace errors
-rw-r--r-- | engines/fullpipe/gfx.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/statics.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/utils.h | 2 |
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); }; |