rsx: Raise semaphore timeout duration bacause some games are very slow

This commit is contained in:
kd-11 2017-12-12 23:35:39 +03:00
parent 47060cdc5f
commit de5dab35e0

View file

@ -75,9 +75,9 @@ namespace rsx
if (Emu.IsStopped()) if (Emu.IsStopped())
break; 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); LOG_ERROR(RSX, "nv406e::semaphore_acquire has timed out. semaphore_address=0x%X", addr);
break; break;
} }