Skip to content

Commit

Permalink
PINK: JANITORIAL: Minor whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jun 28, 2018
1 parent a224e41 commit 11df62d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions engines/pink/cel_decoder.cpp
Expand Up @@ -86,7 +86,7 @@ void CelDecoder::setEndOfTrack() {
}

CelDecoder::CelVideoTrack::CelVideoTrack(Common::SeekableReadStream *stream, uint16 frameCount, uint16 width, uint16 height, bool skipHeader)
: FlicVideoTrack(stream, frameCount, width, height, 1), _center(0,0), _transparentColourIndex(0) {
: FlicVideoTrack(stream, frameCount, width, height, 1), _center(0, 0), _transparentColourIndex(0) {
readHeader();
}

Expand Down Expand Up @@ -170,7 +170,7 @@ void CelDecoder::CelVideoTrack::skipFrame() {
}

if (_curFrame == 0)
_transparentColourIndex = *(byte *)_surface->getBasePtr(0,0);
_transparentColourIndex = *(byte *)_surface->getBasePtr(0, 0);

}

Expand Down Expand Up @@ -201,7 +201,7 @@ const Graphics::Surface *CelDecoder::CelVideoTrack::decodeNextFrame() {
}

if (_curFrame == 0)
_transparentColourIndex = *(byte *)_surface->getBasePtr(0,0);
_transparentColourIndex = *(byte *)_surface->getBasePtr(0, 0);

return _surface;
}
Expand Down
2 changes: 1 addition & 1 deletion engines/pink/pda_mgr.cpp
Expand Up @@ -80,7 +80,7 @@ void PDAMgr::onMouseMove(Common::Point point) {
if (actor && dynamic_cast<PDAButtonActor *>(actor))
actor->onMouseOver(point, &_cursorMgr);
else
_cursorMgr.setCursor(kPDADefaultCursor, point,Common::String());
_cursorMgr.setCursor(kPDADefaultCursor, point, Common::String());
}

void PDAMgr::close() {
Expand Down

0 comments on commit 11df62d

Please sign in to comment.