diff options
Diffstat (limited to 'engines/saga/introproc_fta2.cpp')
-rw-r--r-- | engines/saga/introproc_fta2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/saga/introproc_fta2.cpp b/engines/saga/introproc_fta2.cpp index 0629ebe8e2..4e9541d0b9 100644 --- a/engines/saga/introproc_fta2.cpp +++ b/engines/saga/introproc_fta2.cpp @@ -48,7 +48,7 @@ public: } ~MoviePlayerSMK(void) { closeFile(); } - bool load(const char *filename) { + bool load(const char *filename) { _skipVideo = false; return loadFile(filename); } @@ -100,8 +100,8 @@ void MoviePlayerSMK::playVideo() { bool MoviePlayerSMK::processFrame() { Graphics::Surface *screen = _vm->_system->lockScreen(); - copyFrameToBuffer((byte *)screen->pixels, - (_vm->getDisplayInfo().width - getWidth()) / 2, + copyFrameToBuffer((byte *)screen->pixels, + (_vm->getDisplayInfo().width - getWidth()) / 2, (_vm->getDisplayInfo().height - getHeight()) / 2, _vm->getDisplayInfo().width); _vm->_system->unlockScreen(); |