Added a comment.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@907 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson 2008-10-18 03:04:08 +00:00
parent b95ea6ceb6
commit ad589b7b6b
1 changed files with 4 additions and 1 deletions

View File

@ -291,13 +291,16 @@ CBreakPointWindow::OnAddMemoryCheckMany(wxCommandEvent& event)
{ {
std::string line = StripSpaces(*iter); std::string line = StripSpaces(*iter);
std::vector<std::string> pieces; std::vector<std::string> pieces;
SplitString(line, " ", pieces); SplitString(line, " ", pieces); // split string
TMemCheck MemCheck; TMemCheck MemCheck;
u32 sAddress = 0; u32 sAddress = 0;
u32 eAddress = 0; u32 eAddress = 0;
bool doCommon = false; bool doCommon = false;
// ------------------------------------------------------------------------------------------
// Decide if we have a range or just one address
// --------------
if ( if (
pieces.size() == 1 pieces.size() == 1
&& AsciiToHex(pieces[0].c_str(), sAddress) && AsciiToHex(pieces[0].c_str(), sAddress)