aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_digital.cpp
diff options
context:
space:
mode:
authorLars Persson2006-05-31 19:55:29 +0000
committerLars Persson2006-05-31 19:55:29 +0000
commit44d48ed5941918927d271dad0e742941b7f94a8e (patch)
tree7e5e5c7bb66682582219cfb2c292d133966c129f /engines/kyra/sound_digital.cpp
parent53b652b0086c7db4aec61cdc9fe82e0c589eba2c (diff)
downloadscummvm-rg350-44d48ed5941918927d271dad0e742941b7f94a8e.tar.gz
scummvm-rg350-44d48ed5941918927d271dad0e742941b7f94a8e.tar.bz2
scummvm-rg350-44d48ed5941918927d271dad0e742941b7f94a8e.zip
GCC 2.9x fix for Symbian OS, for accessing class within Common namespace
svn-id: r22807
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