diff options
-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); |