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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user