Skip to content

Commit

Permalink
Merge pull request #14284 from ANR2ME/adhoc
Browse files Browse the repository at this point in the history
[Adhoc] Fix Teenage Mutant Ninja Turtles Multiplayer
  • Loading branch information
anr2me authored Mar 13, 2021
2 parents 2633570 + b0503d7 commit 542e426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Dialog/PSPNetconfDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void PSPNetconfDialog::DisplayMessage(std::string text1, std::string text2a, std
}

int PSPNetconfDialog::Update(int animSpeed) {
if (GetStatus() != SCE_UTILITY_STATUS_RUNNING) {
if (ReadStatus() != SCE_UTILITY_STATUS_RUNNING) {
return SCE_ERROR_UTILITY_INVALID_STATUS;
}

Expand Down Expand Up @@ -464,7 +464,7 @@ int PSPNetconfDialog::Update(int animSpeed) {
EndDraw();
}

if (GetStatus() == SCE_UTILITY_STATUS_FINISHED || pendingStatus == SCE_UTILITY_STATUS_FINISHED)
if (ReadStatus() == SCE_UTILITY_STATUS_FINISHED || pendingStatus == SCE_UTILITY_STATUS_FINISHED)
Memory::Memcpy(requestAddr, &request, request.common.size, "NetConfDialogParam");

return 0;
Expand Down

0 comments on commit 542e426

Please sign in to comment.