aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
Diffstat (limited to 'sword2')
-rw-r--r--sword2/driver/animation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword2/driver/animation.cpp b/sword2/driver/animation.cpp
index 6efa697c4d..6d9a7db779 100644
--- a/sword2/driver/animation.cpp
+++ b/sword2/driver/animation.cpp
@@ -104,7 +104,7 @@ void AnimationState::drawYUV(int width, int height, byte *const *dat) {
#ifdef BACKEND_8BIT
_vm->_screen->plotYUV(lut, width, height, dat);
#else
- plotYUV(lookup, width, height, dat);
+ plotYUV(width, height, dat);
#endif
}
@@ -308,7 +308,7 @@ void MoviePlayer::playMPEG(const char *filename, MovieTextObject *text[], byte *
switch (event.type) {
#ifndef BACKEND_8BIT
case OSystem::EVENT_SCREEN_CHANGED:
- anim->invalidateLookup(true);
+ anim->buildLookup();
break;
#endif
case OSystem::EVENT_KEYDOWN: