mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
rsx: More strict infinite desync detection
6 desyncs per second for 1.5 seconds is pretty bad already.
This commit is contained in:
parent
7ed570dc4a
commit
9d971e3b07
1 changed files with 1 additions and 1 deletions
|
@ -2258,7 +2258,7 @@ namespace rsx
|
|||
{
|
||||
const u64 current_time = get_system_time();
|
||||
|
||||
if (recovered_fifo_cmds_history.size() == 20u)
|
||||
if (recovered_fifo_cmds_history.size() == 9u)
|
||||
{
|
||||
const auto cmd_info = recovered_fifo_cmds_history.front();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue