mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
WatchView: Pass string by reference in SetWatchName
This commit is contained in:
parent
4497233663
commit
04ee0245e2
@ -56,7 +56,7 @@ static void UpdateWatchAddr(int count, u32 value)
|
|||||||
PowerPC::watches.Update(count - 1, value);
|
PowerPC::watches.Update(count - 1, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void SetWatchName(int count, const std::string value)
|
static void SetWatchName(int count, const std::string& value)
|
||||||
{
|
{
|
||||||
if ((count - 1) < (int)PowerPC::watches.GetWatches().size())
|
if ((count - 1) < (int)PowerPC::watches.GetWatches().size())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user