From 20900ebea20ee7be798c93894d5ee965ff989959 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 4 Jul 2018 12:14:56 +0300 Subject: [PATCH] SPU: rename block stats Use Block Weight and Retreats --- rpcs3/Emu/Cell/SPUThread.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rpcs3/Emu/Cell/SPUThread.cpp b/rpcs3/Emu/Cell/SPUThread.cpp index 1eb993f3d5..a4d0885af6 100644 --- a/rpcs3/Emu/Cell/SPUThread.cpp +++ b/rpcs3/Emu/Cell/SPUThread.cpp @@ -424,8 +424,7 @@ std::string SPUThread::dump() const { std::string ret = cpu_thread::dump(); - // Print some transaction statistics - fmt::append(ret, "\nBlocks: %u; Fail: %u", block_counter, block_failure); + fmt::append(ret, "\nBlock Weight: %u (Retreats: %u)", block_counter, block_failure); fmt::append(ret, "\n[%s]", ch_mfc_cmd); fmt::append(ret, "\nTag Mask: 0x%08x", ch_tag_mask); fmt::append(ret, "\nMFC Stall: 0x%08x", ch_stall_mask); @@ -528,7 +527,7 @@ void SPUThread::cpu_task() } // Print some stats - LOG_NOTICE(SPU, "Stats: block %u (fails: %u);", block_counter, block_failure); + LOG_NOTICE(SPU, "Stats: Block Weight: %u (Retreats: %u);", block_counter, block_failure); return; }