mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-15 18:29:34 -06:00
Merge pull request #1555 from lioncash/ref
WatchView: Pass string by reference in SetWatchName
This commit is contained in:
@ -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())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user