From 58e4d49bb5d1c4c59bc8d23aa17594d2c82e2f1d Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Thu, 17 May 2018 17:39:43 +0300 Subject: [PATCH] Fixup (endless loop) --- rpcs3/Emu/Cell/SPUThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPUThread.cpp b/rpcs3/Emu/Cell/SPUThread.cpp index 9c9113dc41..1ecc7c6a2d 100644 --- a/rpcs3/Emu/Cell/SPUThread.cpp +++ b/rpcs3/Emu/Cell/SPUThread.cpp @@ -1320,7 +1320,7 @@ bool SPUThread::process_mfc_cmd(spu_mfc_cmd args) if (g_use_rtm) { // Do several attempts (TODO) - for (u32 i = 0;; i++) + for (u32 i = 0; i < 3; i++) { const int r = spu_putllc_tx(raddr, rtime, rdata.data(), to_write.data());