mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
rsx: Raise semaphore timeout duration bacause some games are very slow
This commit is contained in:
parent
47060cdc5f
commit
de5dab35e0
1 changed files with 2 additions and 2 deletions
|
@ -75,9 +75,9 @@ namespace rsx
|
|||
if (Emu.IsStopped())
|
||||
break;
|
||||
|
||||
if ((get_system_time() - start) > 33000)
|
||||
if ((get_system_time() - start) > 1000000)
|
||||
{
|
||||
//If longer than 33ms force exit (1 frame)
|
||||
//If longer than 1s force exit
|
||||
LOG_ERROR(RSX, "nv406e::semaphore_acquire has timed out. semaphore_address=0x%X", addr);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue