From 522752c77d101e7c8dd7c661e1e5fc601280e9e1 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sat, 13 Dec 2008 16:58:06 +0000 Subject: 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 --- Source/Core/Common/Src/Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Src/Thread.cpp') 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; } -- cgit v1.2.3