diff options
Diffstat (limited to 'graphics/animation.cpp')
-rw-r--r-- | graphics/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/animation.cpp b/graphics/animation.cpp index 79a0aad0d2..7d8cc1d920 100644 --- a/graphics/animation.cpp +++ b/graphics/animation.cpp @@ -38,7 +38,7 @@ BaseAnimationState::~BaseAnimationState() { delete mpgfile; delete sndfile; #ifndef BACKEND_8BIT - _sys->hide_overlay(); + _sys->hideOverlay(); free(overlay); #endif if (bgSoundStream) @@ -108,7 +108,7 @@ bool BaseAnimationState::init(const char *name) { #else buildLookup(); overlay = (OverlayColor*)calloc(MOVIE_WIDTH * MOVIE_HEIGHT, sizeof(OverlayColor)); - _sys->show_overlay(); + _sys->showOverlay(); #endif // Open MPEG2 stream |