Merge pull request #3375 from thedax/master

Fix hang in Project Diva 2nd in single-threaded mode.
This commit is contained in:
Henrik Rydgård 2013-08-25 01:00:17 -07:00
commit 3d0ad08dd2

View File

@ -590,9 +590,10 @@ void GPUCommon::ProcessDLQueueInternal() {
cyclesExecuted = 0;
UpdateTickEstimate(std::max(busyTicks, startingTicks + cyclesExecuted));
// Seems to be correct behaviour to process the list anyway?
if (startingTicks < busyTicks) {
DEBUG_LOG(HLE, "Can't execute a list yet, still busy for %lld ticks", busyTicks - startingTicks);
return;
//return;
}
for (int listIndex = GetNextListIndex(); listIndex != -1; listIndex = GetNextListIndex()) {