From ad589b7b6bbfbf5d6e7b91e4494a14daa631423d Mon Sep 17 00:00:00 2001 From: John Peterson Date: Sat, 18 Oct 2008 03:04:08 +0000 Subject: [PATCH] Added a comment. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@907 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/BreakpointWindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp index 79b91cdd8f..64f12ba3f6 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp +++ b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp @@ -291,13 +291,16 @@ CBreakPointWindow::OnAddMemoryCheckMany(wxCommandEvent& event) { std::string line = StripSpaces(*iter); std::vector pieces; - SplitString(line, " ", pieces); + SplitString(line, " ", pieces); // split string TMemCheck MemCheck; u32 sAddress = 0; u32 eAddress = 0; bool doCommon = false; + // ------------------------------------------------------------------------------------------ + // Decide if we have a range or just one address + // -------------- if ( pieces.size() == 1 && AsciiToHex(pieces[0].c_str(), sAddress)