mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
remove a redundant check
This commit is contained in:
parent
d22793e257
commit
23cce7d25a
1 changed files with 1 additions and 1 deletions
|
@ -3402,7 +3402,7 @@ void __KernelReturnFromMipsCall()
|
|||
{
|
||||
if (call->cbId > 0)
|
||||
{
|
||||
if (waitTypeFuncs[cur->nt.waitType].endFunc != NULL && call->cbId > 0)
|
||||
if (waitTypeFuncs[cur->nt.waitType].endFunc != NULL)
|
||||
waitTypeFuncs[cur->nt.waitType].endFunc(cur->GetUID(), cur->currentCallbackId);
|
||||
else
|
||||
ERROR_LOG_REPORT(HLE, "Missing begin/restore funcs for wait type %d", cur->nt.waitType);
|
||||
|
|
Loading…
Add table
Reference in a new issue