summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/image_data.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-07-30 22:08:14 +0800
committerchai <chaifix@163.com>2019-07-30 22:08:14 +0800
commit51a715ffe0b138960846e9f407a1290037931b33 (patch)
tree55c21cef5ffa5005a8c4c2a9602773ab479e8d0b /source/modules/asura-core/image/image_data.cpp
parentecd7883521cbde02f4f1a6b23a7b3b601c32dbef (diff)
*修改成员变量前缀
Diffstat (limited to 'source/modules/asura-core/image/image_data.cpp')
-rw-r--r--source/modules/asura-core/image/image_data.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/asura-core/image/image_data.cpp b/source/modules/asura-core/image/image_data.cpp
index b35c4b2..883343c 100644
--- a/source/modules/asura-core/image/image_data.cpp
+++ b/source/modules/asura-core/image/image_data.cpp
@@ -52,12 +52,12 @@ namespace AsuraEngine
void ImageData::Lock()
{
- mMutex.Lock();
+ m_Mutex.Lock();
}
void ImageData::Unlock()
{
- mMutex.Unlock();
+ m_Mutex.Unlock();
}
}