aboutsummaryrefslogtreecommitdiff
path: root/queen/cutaway.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'queen/cutaway.cpp')
-rw-r--r--queen/cutaway.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp
index 0eaabb7ffc..1e8f390989 100644
--- a/queen/cutaway.cpp
+++ b/queen/cutaway.cpp
@@ -426,7 +426,7 @@ Cutaway::ObjectType Cutaway::getObjectType(CutawayObject &object) {
if (object.fromObject > 0) {
/* Copy FROM_OBJECT into OBJECT */
- if(object.objectNumber != object.fromObject) {
+ if (object.objectNumber != object.fromObject) {
_vm->logic()->objectCopy(object.fromObject, object.objectNumber);
} else {
// Same object, so just turn it on!
@@ -1130,7 +1130,7 @@ void Cutaway::updateGameState() {
bool update = false;
if (stateIndex > 0) {
- if(_vm->logic()->gameState(stateIndex) == stateValue)
+ if (_vm->logic()->gameState(stateIndex) == stateValue)
update = true;
} else {
_vm->logic()->gameState(ABS(stateIndex), stateValue);