WatchView: Pass string by reference in SetWatchName

This commit is contained in:
Lioncash 2014-11-15 14:06:12 -05:00
parent 4497233663
commit 04ee0245e2

View File

@ -56,7 +56,7 @@ static void UpdateWatchAddr(int count, u32 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())
{