From c6a50d3b77e3dfdfc83e2ccfe4adba2928aa9d24 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 30 Oct 2008 20:53:56 +0000 Subject: [PATCH] more sync removed git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1020 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/CommandProcessor.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/Src/HW/CommandProcessor.cpp b/Source/Core/Core/Src/HW/CommandProcessor.cpp index 79761edff5..503936172e 100644 --- a/Source/Core/Core/Src/HW/CommandProcessor.cpp +++ b/Source/Core/Core/Src/HW/CommandProcessor.cpp @@ -189,14 +189,14 @@ void Init() #ifdef _WIN32 //InitializeCriticalSection(&fifo.sync); #else - fifo.sync = new Common::CriticalSection(0); + // fifo.sync = new Common::CriticalSection(0); #endif } void Shutdown() { #ifndef _WIN32 - delete fifo.sync; + // delete fifo.sync; #endif } @@ -316,7 +316,7 @@ void Write16(const u16 _Value, const u32 _Address) #ifdef _WIN32 //EnterCriticalSection(&fifo.sync); #else - fifo.sync->Enter(); + // fifo.sync->Enter(); #endif } @@ -461,7 +461,7 @@ void Write16(const u16 _Value, const u32 _Address) #ifdef _WIN32 //LeaveCriticalSection(&fifo.sync); #else - fifo.sync->Leave(); + // fifo.sync->Leave(); #endif }