mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Added a comment.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@907 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user