From 83c7f6f149f18e49845ef4ccbc99a71a4e337201 Mon Sep 17 00:00:00 2001 From: Eladash Date: Thu, 16 Apr 2020 21:16:40 +0300 Subject: [PATCH] debugger: Rephrase "Current function" to "In function" Takes less space which makes actual function name display a bit nicer. Also the meaning is clearer. --- rpcs3/Emu/Cell/PPUThread.cpp | 2 +- rpcs3/Emu/Cell/SPUThread.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index d3968ba20a..269bc7cd5e 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -504,7 +504,7 @@ std::string ppu_thread::dump_misc() const if (_func) { - ret += "Current function: "; + ret += "In function: "; ret += _func; ret += '\n'; diff --git a/rpcs3/Emu/Cell/SPUThread.cpp b/rpcs3/Emu/Cell/SPUThread.cpp index c15fcf29cb..7912ae5980 100644 --- a/rpcs3/Emu/Cell/SPUThread.cpp +++ b/rpcs3/Emu/Cell/SPUThread.cpp @@ -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