fix a mistake in a logic condition

This commit is contained in:
chinhodado 2014-02-21 19:43:24 -05:00
parent ce518a432f
commit 586eb76ddf

View file

@ -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)