diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-12-13 16:58:06 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-12-13 16:58:06 +0000 |
| commit | 522752c77d101e7c8dd7c661e1e5fc601280e9e1 (patch) | |
| tree | d8747759465d5f4e37d22510838c215bd2efa828 /Source/Core/Common/Src/Thread.cpp | |
| parent | 4355c373970ccc3f690699f0d40448972f81e8bc (diff) | |
small speedup of logmanager, minor logging improvements, misc code standard improvements, replace a crash with an error message in ppcanalyst
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1521 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/Thread.cpp')
| -rw-r--r-- | Source/Core/Common/Src/Thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/Thread.cpp b/Source/Core/Common/Src/Thread.cpp index 5af43cca41..853918cf06 100644 --- a/Source/Core/Common/Src/Thread.cpp +++ b/Source/Core/Common/Src/Thread.cpp @@ -58,7 +58,7 @@ void CriticalSection::Enter() bool CriticalSection::TryEnter() { - return(TryEnterCriticalSection(§ion) ? true : false); + return TryEnterCriticalSection(§ion) ? true : false; } |
