Added new interface SeekableReadStream

svn-id: r16493
This commit is contained in:
Max Horn 2005-01-09 01:41:43 +00:00
parent 9c7a604c8b
commit bc44b5ec15
6 changed files with 47 additions and 21 deletions

View file

@ -35,6 +35,10 @@ DECLARE_SINGLETON(OSystem);
template <>
OSystem *Common::Singleton<OSystem>::makeInstance() {
return OSystem::createSystem();
}
OSystem *OSystem::createSystem() {
// Attention: Do not call parseGraphicsMode() here, nor any other function
// which needs to access the OSystem instance, else you get stuck in an
// endless loop.