FULLPIPE: Fix whitespace errors

This commit is contained in:
Colin Snover 2017-11-12 13:45:41 -06:00 committed by Eugene Sandulenko
parent 88a2eaba93
commit 8e0c53de18
3 changed files with 3 additions and 3 deletions

View file

@ -512,7 +512,7 @@ bool Picture::load(MfcArchive &file) {
setAOIDs(); setAOIDs();
} }
assert (g_fp->_gameProjectVersion >= 12); assert(g_fp->_gameProjectVersion >= 12);
_alpha = file.readUint32LE() & 0xff; _alpha = file.readUint32LE() & 0xff;

View file

@ -1497,7 +1497,7 @@ Movement::~Movement() {
for (uint i = 0; i < _dynamicPhases.size(); i++) for (uint i = 0; i < _dynamicPhases.size(); i++)
delete _framePosOffsets[i]; delete _framePosOffsets[i];
if (!_currMovement ) { if (!_currMovement) {
if (_updateFlag1) { if (_updateFlag1) {
_dynamicPhases[0]->freePixelData(); _dynamicPhases[0]->freePixelData();
_dynamicPhases.remove_at(0); _dynamicPhases.remove_at(0);

View file

@ -107,7 +107,7 @@ public:
}; };
class ObList : public Common::List<CObject *>, public CObject { class ObList : public Common::List<CObject *>, public CObject {
public: public:
virtual bool load(MfcArchive &file); virtual bool load(MfcArchive &file);
}; };