diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-12-09 21:24:12 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-12-09 21:24:12 +0000 |
| commit | d01e05b7b56dd651368d13f60ba04286c7075cac (patch) | |
| tree | 985785a7d0f8fe850c684cf683cb221a5790884b /Source/Core/DebuggerWX/Src/CodeWindow.cpp | |
| parent | 6bf333c8930f5d6500a00acd3343384cdbdfe3ab (diff) | |
make all disassembler calls threadsafe .. hopefully.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1462 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DebuggerWX/Src/CodeWindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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( |
