summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2008-09-24 19:10:56 +0000
committerhrydgard <hrydgard@gmail.com>2008-09-24 19:10:56 +0000
commite4785df7a2ec6b1b3b45cd27cad515b8add44fc0 (patch)
tree00c277e53c7e0da28accdac0b77210f3a7a89018 /Source/Core/DebuggerWX
parent284e3ec211536041cda4b754d594302f6fb9a161 (diff)
Ban compression of Wii images until it has been tested. All sorts of minor cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@669 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX')
-rw-r--r--Source/Core/DebuggerWX/Src/LogWindow.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/Src/LogWindow.cpp b/Source/Core/DebuggerWX/Src/LogWindow.cpp
index b329192de9..7e23dbf19b 100644
--- a/Source/Core/DebuggerWX/Src/LogWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/LogWindow.cpp
@@ -110,6 +110,8 @@ void CLogWindow::OnClear(wxCommandEvent& event)
void CLogWindow::OnEnableAll(wxCommandEvent& event)
{
+ if (!LogManager::m_Log[0])
+ return;
static bool enable = true;
IniFile ini;
ini.Load("Dolphin.ini");