diff options
author | whiterandrek | 2018-05-22 11:58:02 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 174b317facdf127967841b5de5b2226734d184bf (patch) | |
tree | b63ab9a1606224f04e1820f31b5e833f2c77529e | |
parent | e98c14c3d7d790f6ba77ab4d4925b608c55e2e22 (diff) | |
download | scummvm-rg350-174b317facdf127967841b5de5b2226734d184bf.tar.gz scummvm-rg350-174b317facdf127967841b5de5b2226734d184bf.tar.bz2 scummvm-rg350-174b317facdf127967841b5de5b2226734d184bf.zip |
PINK: fix formatting
-rw-r--r-- | engines/pink/cursor_mgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pink/cursor_mgr.cpp b/engines/pink/cursor_mgr.cpp index d15f695cac..0154a33d77 100644 --- a/engines/pink/cursor_mgr.cpp +++ b/engines/pink/cursor_mgr.cpp @@ -39,7 +39,7 @@ void CursorMgr::setCursor(uint index, Common::Point point, const Common::String if (index == kClickableFirstFrameCursor) { startAnimation(index); return hideItem(); - } else if (index != kHoldingItemCursor){ + } else if (index != kHoldingItemCursor) { if (index != kPDASecondCursor) { _game->setCursor(index); @@ -78,7 +78,7 @@ void CursorMgr::update() { return; uint newTime = _game->getTotalPlayTime(); - if (newTime - _time > kCursorsUpdateTime){ + if (newTime - _time > kCursorsUpdateTime) { _time = newTime; _isSecondFrame = !_isSecondFrame; _game->setCursor(_firstFrameIndex + _isSecondFrame); |