diff options
author | chai <chaifix@163.com> | 2019-07-30 22:12:11 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-07-30 22:12:11 +0800 |
commit | 012a44bd13ab41d056e7d3884a39027b6cea62b5 (patch) | |
tree | d835819273cdc394b5339072b887399cde3aea27 /source/modules/asura-utils/threading/binding/_thread.cpp | |
parent | 51a715ffe0b138960846e9f407a1290037931b33 (diff) |
*修改成员变量前缀
Diffstat (limited to 'source/modules/asura-utils/threading/binding/_thread.cpp')
-rw-r--r-- | source/modules/asura-utils/threading/binding/_thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/asura-utils/threading/binding/_thread.cpp b/source/modules/asura-utils/threading/binding/_thread.cpp index ad2fb7f..ae43242 100644 --- a/source/modules/asura-utils/threading/binding/_thread.cpp +++ b/source/modules/asura-utils/threading/binding/_thread.cpp @@ -185,7 +185,7 @@ namespace AsuraEngine LUAX_IMPL_METHOD(Thread, _GetType) { LUAX_PREPARE(L, Thread); - state.Push(self->mType); + state.Push(self->m_Type); return 1; } @@ -193,7 +193,7 @@ namespace AsuraEngine LUAX_IMPL_METHOD(Thread, _GetState) { LUAX_PREPARE(L, Thread); - state.Push(self->mState); + state.Push(self->m_State); return 1; } |