diff options
author | Alejandro Marzini | 2010-06-01 04:02:44 +0000 |
---|---|---|
committer | Alejandro Marzini | 2010-06-01 04:02:44 +0000 |
commit | 38dbbca964ac182439c2e61840783a4b7465688a (patch) | |
tree | 69baa4dc8fd6a225535c5c645c0c2084cc67af1c /backends/platform/sdl/mutex.h | |
parent | 0bc8f4c8b4050c54e551aabdf58b30be79b6720c (diff) | |
download | scummvm-rg350-38dbbca964ac182439c2e61840783a4b7465688a.tar.gz scummvm-rg350-38dbbca964ac182439c2e61840783a4b7465688a.tar.bz2 scummvm-rg350-38dbbca964ac182439c2e61840783a4b7465688a.zip |
Removed OSystem pointer. Added left initialization code to file subsystem.
svn-id: r49370
Diffstat (limited to 'backends/platform/sdl/mutex.h')
-rw-r--r-- | backends/platform/sdl/mutex.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/backends/platform/sdl/mutex.h b/backends/platform/sdl/mutex.h index 9479aa9ece..0f53a6067a 100644 --- a/backends/platform/sdl/mutex.h +++ b/backends/platform/sdl/mutex.h @@ -39,7 +39,7 @@ public: SdlSubSys_Mutex(); ~SdlSubSys_Mutex(); - virtual void mutexInit(OSystem *mainSys); + virtual void mutexInit(); virtual void mutexDone(); bool hasFeature(Feature f); @@ -60,9 +60,6 @@ protected: * when accessing the screen. */ MutexRef _graphicsMutex; - -private: - OSystem *_mainSys; }; |