mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
Correct FSM to go to the CONN_CONNECTED state
This commit is contained in:
parent
d554070fc3
commit
de583835c3
@ -1277,8 +1277,10 @@ network_connection_error_t Network::ConnectFSM()
|
||||
case CONN_BANDWIDTH_REPLY:
|
||||
{
|
||||
network_connection_error_t err = this->WaitForBandWidthReply();
|
||||
if (err == OK)
|
||||
if (err == OK) {
|
||||
this->network_connection_state = CONN_CONNECTED;
|
||||
return AGAIN_ERROR;
|
||||
}
|
||||
return err;
|
||||
} break;
|
||||
case CONN_CONNECTED:
|
||||
|
Loading…
Reference in New Issue
Block a user