Missed a critical section.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7295 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Jordan Woyak
2011-03-05 12:05:58 +00:00
parent 423018f811
commit e16e177148
3 changed files with 3 additions and 7 deletions

View File

@ -96,7 +96,7 @@ void BPWritten(const BPCmd& bp)
//}
// FIXME: Hangs load-state, but should fix graphic-heavy games state loading
//s_bpCritical.Enter();
//std::lock_guard<std::mutex> lk(s_bpCritical);
// BEGIN ZTP SPEEDUP HACK CHANGES
// This hunk of code disables the usual pipeline flush for certain BP Writes
@ -631,9 +631,6 @@ void BPWritten(const BPCmd& bp)
break;
}
}
// FIXME: Hangs load-state, but should fix graphic-heavy games state loading
//s_bpCritical.Leave();
}
}