GCC 2.9x fix for Symbian OS, for accessing class within Common namespace

svn-id: r22807
This commit is contained in:
Lars Persson 2006-05-31 19:55:29 +00:00
parent 53b652b008
commit 44d48ed594

View File

@ -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