From d01e05b7b56dd651368d13f60ba04286c7075cac Mon Sep 17 00:00:00 2001 From: hrydgard Date: Tue, 9 Dec 2008 21:24:12 +0000 Subject: make all disassembler calls threadsafe .. hopefully. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1462 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/CodeWindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp') diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp index d96ce251f2..2b38d5154e 100644 --- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp @@ -301,25 +301,25 @@ void CCodeWindow::CreateGUIControls(const SCoreStartupParameter& _LocalCoreStart m_RegisterWindow->Show(true); } - if(bBreakpointWindow) + if (bBreakpointWindow) { m_BreakpointWindow = new CBreakPointWindow(this, this); m_BreakpointWindow->Show(true); } - if(bMemoryWindow) + if (bMemoryWindow) { m_MemoryWindow = new CMemoryWindow(this); m_MemoryWindow->Show(true); } - if(bJitWindow) + if (bJitWindow) { m_JitWindow = new CJitWindow(this); m_JitWindow->Show(true); } - if(bSoundWindow) + if (bSoundWindow) { // possible todo: add some kind of if here to? can it fail? CPluginManager::GetInstance().OpenDebug( @@ -329,7 +329,7 @@ void CCodeWindow::CreateGUIControls(const SCoreStartupParameter& _LocalCoreStart ); } // don't have any else, just ignore it - if(bVideoWindow) + if (bVideoWindow) { // possible todo: add some kind of if here to? can it fail? CPluginManager::GetInstance().OpenDebug( -- cgit v1.2.3