summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/LogWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/Src/LogWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/LogWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/LogWindow.cpp b/Source/Core/DebuggerWX/Src/LogWindow.cpp
index 7c14c96368..d3c92bdfcd 100644
--- a/Source/Core/DebuggerWX/Src/LogWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/LogWindow.cpp
@@ -73,7 +73,7 @@ CLogWindow::CLogWindow(wxWindow* parent)
m_options->SetMinSize(wxSize(m_options->GetSize().GetWidth() - 40,
m_options->GetCount() * 15));
#ifdef _WIN32
- for (int i = 0; i < m_options->GetCount(); ++i)
+ for (unsigned int i = 0; i < m_options->GetCount(); ++i)
m_options->GetItem(i)->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
#endif