Clean up umd bad callback id errors, oops.

This commit is contained in:
Unknown W. Brackets 2013-09-02 03:02:48 -07:00
parent 64b75ed3ff
commit 87bd8d59e2
2 changed files with 6 additions and 4 deletions

View file

@ -2969,7 +2969,7 @@ void ActionAfterMipsCall::run(MipsCall &call) {
ActionAfterMipsCall *Thread::getRunningCallbackAction()
{
if (this->GetUID() == currentThread && g_inCbCount > 0) {
if (this->GetUID() == currentThread && g_inCbCount > 0) {
MipsCall *call = mipsCalls.get(this->currentMipscallId);
ActionAfterMipsCall *action = 0;
if (call)