mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
GCC 2.9x fix for Symbian OS, for accessing class within Common namespace
svn-id: r22807
This commit is contained in:
parent
53b652b008
commit
44d48ed594
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user