pvr: naomi mvsc2 needs more rendering cycles

Regression introduced by 0b0e64304e
This commit is contained in:
Flyinghead 2022-12-06 19:50:34 +01:00
parent a0529d1cfc
commit 976fb99aa3
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ void scheduleRenderDone(TA_context *cntx)
int size = 0;
for (TA_context *c = cntx; c != nullptr; c = c->nextContext)
size += c->tad.thd_data - c->tad.thd_root;
cycles = std::min(100000 + size * 2, 1500000);
cycles = std::min(200000 + size * 3, 1500000);
}
sh4_sched_request(render_end_schid, cycles);
}