diff options
author | Colin Snover | 2017-02-10 17:39:06 -0600 |
---|---|---|
committer | Colin Snover | 2017-04-22 19:28:34 -0500 |
commit | 41c633f0c54d48cd4bec07369553985ad0caee00 (patch) | |
tree | cdc747dd0797e9616729b76375c3907138b6240a | |
parent | 848bce47e18ab60137597b419a2eeb2013bfc7cc (diff) | |
download | scummvm-rg350-41c633f0c54d48cd4bec07369553985ad0caee00.tar.gz scummvm-rg350-41c633f0c54d48cd4bec07369553985ad0caee00.tar.bz2 scummvm-rg350-41c633f0c54d48cd4bec07369553985ad0caee00.zip |
SCI: Fix whitespace errors
-rw-r--r-- | engines/sci/engine/object.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/engine/object.cpp b/engines/sci/engine/object.cpp index 2a6c96664b..2c1ab2a44a 100644 --- a/engines/sci/engine/object.cpp +++ b/engines/sci/engine/object.cpp @@ -275,7 +275,7 @@ void Object::initSelectorsSci3(const SciSpan<const byte> &buf) { _mustSetViewVisible[groupNr] = (typeMask & 1); - for (int bit = 2; bit < 32; ++bit) { + for (int bit = 2; bit < 32; ++bit) { int value = seeker.getUint16SEAt(bit * 2); if (typeMask & (1 << bit)) { // Property ++properties; @@ -284,7 +284,6 @@ void Object::initSelectorsSci3(const SciSpan<const byte> &buf) { } else { // Undefined selector } - } } else _mustSetViewVisible[groupNr] = false; |