aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_digital.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/sound_digital.cpp')
-rw-r--r--engines/kyra/sound_digital.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound_digital.cpp b/engines/kyra/sound_digital.cpp
index 90e4f0b0da..fae54bcad4 100644
--- a/engines/kyra/sound_digital.cpp
+++ b/engines/kyra/sound_digital.cpp
@@ -86,7 +86,7 @@ AUDStream::AUDStream(Common::File *file, bool loop) : _file(0), _endOfData(true)
// Symbian can't share filehandles between different threads.
// So create a new file and seek that to the other filehandle's
// position
- _file = new File;
+ _file = new Common::File;
_file->open(file->name());
_file->seek(file->pos());
#else