diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-14 23:36:12 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-14 23:36:12 +0100 |
commit | 15fe5a1d41acc50dd2111309a352575a1edacf1c (patch) | |
tree | 8ae9252957c83dce0b1034e3864eb6335b53c1b5 /source/OSSupport/CriticalSection.h | |
parent | Fixed warnings in Player.cpp (diff) | |
download | cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar.gz cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar.bz2 cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar.lz cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar.xz cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.tar.zst cuberite-15fe5a1d41acc50dd2111309a352575a1edacf1c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/OSSupport/CriticalSection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/OSSupport/CriticalSection.h b/source/OSSupport/CriticalSection.h index c7607ee70..1bfe81439 100644 --- a/source/OSSupport/CriticalSection.h +++ b/source/OSSupport/CriticalSection.h @@ -21,7 +21,7 @@ public: private: #ifdef _DEBUG - bool m_IsLocked; + int m_IsLocked; // Number of times this CS is locked unsigned long m_OwningThreadID; #endif // _DEBUG |