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 1401d642c9..77be43fdc5 100644 --- a/graphics/animation.cpp +++ b/graphics/animation.cpp @@ -71,7 +71,7 @@ bool BaseAnimationState::init(const char *name, void *audioArg) { // Load lookup palettes sprintf(tempFile, "%s.pal", name); - File f; + Common::File f; if (!f.open(tempFile)) { warning("Cutscene: %s palette missing", tempFile); @@ -120,7 +120,7 @@ bool BaseAnimationState::init(const char *name, void *audioArg) { #endif // Open MPEG2 stream - _mpegFile = new File(); + _mpegFile = new Common::File(); sprintf(tempFile, "%s.mp2", name); if (!_mpegFile->open(tempFile)) { warning("Cutscene: Could not open %s", tempFile); |