From 44d48ed5941918927d271dad0e742941b7f94a8e Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Wed, 31 May 2006 19:55:29 +0000 Subject: GCC 2.9x fix for Symbian OS, for accessing class within Common namespace svn-id: r22807 --- engines/kyra/sound_digital.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/kyra/sound_digital.cpp') 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 -- cgit v1.2.3