mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-17 20:43:43 +00: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
@ -504,7 +504,7 @@ std::string ppu_thread::dump_misc() const
|
||||
|
||||
if (_func)
|
||||
{
|
||||
ret += "Current function: ";
|
||||
ret += "In function: ";
|
||||
ret += _func;
|
||||
ret += '\n';
|
||||
|
||||
|
@ -1056,7 +1056,7 @@ std::string spu_thread::dump_misc() const
|
||||
{
|
||||
if (const auto func = current_func)
|
||||
{
|
||||
ret += "\nCurrent function: ";
|
||||
ret += "\nIn function: ";
|
||||
ret += func;
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user