aboutsummaryrefslogtreecommitdiff
path: root/common/util.cpp
diff options
context:
space:
mode:
authorMax Horn2004-02-28 12:58:13 +0000
committerMax Horn2004-02-28 12:58:13 +0000
commitc6752cccf5186fb04c97e2bb4a64c52fc9447073 (patch)
tree91f3f0264b1542a839cc3504b52603a8034547cb /common/util.cpp
parent56102a1d02925abbe9fc0504751de1a270a34ff3 (diff)
downloadscummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.tar.gz
scummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.tar.bz2
scummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.zip
renamed more OSystem methods to follow our naming scheme; renamed NewGuiColor to OverlayColor; fixed some calls to error() in the SDL backend
svn-id: r13087
Diffstat (limited to 'common/util.cpp')
-rw-r--r--common/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp
index ae307faff5..85a4810e43 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -119,7 +119,7 @@ void StackLock::lock() {
if (_mutexName != NULL)
debug(6, "Locking mutex %s", _mutexName);
- _syst->lock_mutex(_mutex);
+ _syst->lockMutex(_mutex);
}
void StackLock::unlock() {
@@ -127,7 +127,7 @@ void StackLock::unlock() {
if (_mutexName != NULL)
debug(6, "Unlocking mutex %s", _mutexName);
- _syst->unlock_mutex(_mutex);
+ _syst->unlockMutex(_mutex);
}