mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
debugger: Rephrase "Current function" to "In function"
Takes less space which makes actual function name display a bit nicer. Also the meaning is clearer.
This commit is contained in:
parent
2094e52d7d
commit
83c7f6f149
2 changed files with 2 additions and 2 deletions
|
@ -504,7 +504,7 @@ std::string ppu_thread::dump_misc() const
|
||||||
|
|
||||||
if (_func)
|
if (_func)
|
||||||
{
|
{
|
||||||
ret += "Current function: ";
|
ret += "In function: ";
|
||||||
ret += _func;
|
ret += _func;
|
||||||
ret += '\n';
|
ret += '\n';
|
||||||
|
|
||||||
|
|
|
@ -1056,7 +1056,7 @@ std::string spu_thread::dump_misc() const
|
||||||
{
|
{
|
||||||
if (const auto func = current_func)
|
if (const auto func = current_func)
|
||||||
{
|
{
|
||||||
ret += "\nCurrent function: ";
|
ret += "\nIn function: ";
|
||||||
ret += func;
|
ret += func;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue