Skip to content

Commit

Permalink
PINK: JANITORIAL: Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jun 28, 2018
1 parent 85e0c7c commit bb8a64d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions engines/pink/director.cpp
Expand Up @@ -126,8 +126,7 @@ void Director::draw() {

_dirtyRects.resize(0);
_surface.update();
}
else
} else
g_system->updateScreen();
}

Expand Down
6 changes: 2 additions & 4 deletions engines/pink/objects/actions/action_loop.cpp
Expand Up @@ -61,8 +61,7 @@ void ActionLoop::update() {
if (frame < _startFrame) {
decodeNext();
return;
}
else
} else
_inLoop = true;
}

Expand All @@ -76,8 +75,7 @@ void ActionLoop::update() {
setFrame(_stopFrame - 1);
decodeNext();
}
}
else {
} else {
if (frame > _startFrame) {
setFrame(frame - 1);
} else {
Expand Down
3 changes: 1 addition & 2 deletions engines/pink/objects/actors/supporting_actor.cpp
Expand Up @@ -60,8 +60,7 @@ void SupportingActor::onMouseOver(Common::Point point, CursorMgr *mgr) {
mgr->setCursor(_cursor, point);
else
mgr->setCursor(kClickableFirstFrameCursor, point, Common::String());
}
else
} else
Actor::onMouseOver(point, mgr);
}

Expand Down

0 comments on commit bb8a64d

Please sign in to comment.