mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Fixup (endless loop)
This commit is contained in:
parent
ae0f27a18e
commit
58e4d49bb5
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue