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:
Eladash 2020-04-16 21:16:40 +03:00 committed by Ani
parent 2094e52d7d
commit 83c7f6f149
2 changed files with 2 additions and 2 deletions

View File

@ -504,7 +504,7 @@ std::string ppu_thread::dump_misc() const
if (_func)
{
ret += "Current function: ";
ret += "In function: ";
ret += _func;
ret += '\n';

View File

@ -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