mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Added a new option to add memchecks from the Watch window.
Fixed watch labels from being truncated at the first whitespace.
This commit is contained in:
@ -249,7 +249,8 @@ void Watches::AddFromStrings(const TWatchesStr& bpstrs)
|
||||
std::stringstream ss;
|
||||
ss << std::hex << bpstr;
|
||||
ss >> bp.iAddress;
|
||||
ss >> bp.name;
|
||||
ss >> std::ws;
|
||||
getline(ss, bp.name);
|
||||
Add(bp);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user