mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00: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:
parent
2a3a8520a2
commit
73dca1ca33
2 changed files with 36 additions and 13 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue