aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/movieplayer.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2012-06-16 02:37:02 +0200
committerJohannes Schickel2012-06-16 02:39:00 +0200
commit5f65cf9679b7c01052bb4e7fe46a74a10f84665c (patch)
tree12db52648568f622a09ebcba334512b871cdf313 /engines/sword25/fmv/movieplayer.cpp
parentd8aff72402a808082e1000851b0e11dbd5f57786 (diff)
downloadscummvm-rg350-5f65cf9679b7c01052bb4e7fe46a74a10f84665c.tar.gz
scummvm-rg350-5f65cf9679b7c01052bb4e7fe46a74a10f84665c.tar.bz2
scummvm-rg350-5f65cf9679b7c01052bb4e7fe46a74a10f84665c.zip
SWORD25: Get rid of casts on OSystem::copyRectToScreen calls.
Diffstat (limited to 'engines/sword25/fmv/movieplayer.cpp')
-rw-r--r--engines/sword25/fmv/movieplayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/fmv/movieplayer.cpp b/engines/sword25/fmv/movieplayer.cpp
index 4609565223..9ee13b4b6d 100644
--- a/engines/sword25/fmv/movieplayer.cpp
+++ b/engines/sword25/fmv/movieplayer.cpp
@@ -132,7 +132,7 @@ void MoviePlayer::update() {
const byte *frameData = (const byte *)s->getBasePtr(0, 0);
_outputBitmap->setContent(frameData, s->pitch * s->h, 0, s->pitch);
#else
- g_system->copyRectToScreen((byte *)s->getBasePtr(0, 0), s->pitch, _outX, _outY, MIN(s->w, _backSurface->w), MIN(s->h, _backSurface->h));
+ g_system->copyRectToScreen(s->getBasePtr(0, 0), s->pitch, _outX, _outY, MIN(s->w, _backSurface->w), MIN(s->h, _backSurface->h));
g_system->updateScreen();
#endif
}