mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
fix a mistake in a logic condition
This commit is contained in:
parent
ce518a432f
commit
586eb76ddf
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ int PSPNetconfDialog::Update(int animSpeed) {
|
|||
}
|
||||
|
||||
}
|
||||
else if (status == SCE_UTILITY_STATUS_RUNNING && (request.netAction == NETCONF_CONNECT_ADHOC || request.netAction == NETCONF_CREATE_ADHOC || NETCONF_JOIN_ADHOC)) {
|
||||
else if (status == SCE_UTILITY_STATUS_RUNNING && (request.netAction == NETCONF_CONNECT_ADHOC || request.netAction == NETCONF_CREATE_ADHOC || request.netAction == NETCONF_JOIN_ADHOC)) {
|
||||
if (request.NetconfData != NULL) {
|
||||
Shutdown(true);
|
||||
if (sceNetAdhocctlCreate(request.NetconfData->groupName) == 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue