diff options
author | Max Horn | 2005-01-28 22:05:51 +0000 |
---|---|---|
committer | Max Horn | 2005-01-28 22:05:51 +0000 |
commit | abd12dd1b63d9e680bdc157fd5aa1fdb579e111e (patch) | |
tree | da026a16edefcc56119ef2376eb0b26f7ec9d500 /common/timer.h | |
parent | c62d82450b7fc4d64bf6102cb8074457e3d0cb47 (diff) | |
download | scummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.tar.gz scummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.tar.bz2 scummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.zip |
Use class Mutex instead of MutexRef
svn-id: r16679
Diffstat (limited to 'common/timer.h')
-rw-r--r-- | common/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timer.h b/common/timer.h index 6b3509f41c..d509402314 100644 --- a/common/timer.h +++ b/common/timer.h @@ -39,7 +39,7 @@ public: private: OSystem *_system; - Common::MutexRef _mutex; + Common::Mutex _mutex; void *_timerHandler; int32 _thisTime; int32 _lastTime; |