mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
This commit is contained in:
parent
bea8e9ef9b
commit
01c8e93f87
@ -182,7 +182,7 @@ static void * netcb (void *arg)
|
||||
s32 res=-1;
|
||||
int retry;
|
||||
int wait;
|
||||
static bool first=true;
|
||||
static bool prevInit = false;
|
||||
|
||||
while(netHalt != 2)
|
||||
{
|
||||
@ -190,7 +190,7 @@ static void * netcb (void *arg)
|
||||
|
||||
while (retry>0 && (netHalt != 2))
|
||||
{
|
||||
if(!first)
|
||||
if(prevInit)
|
||||
{
|
||||
bool reset=false;
|
||||
int i;
|
||||
@ -212,7 +212,7 @@ static void * netcb (void *arg)
|
||||
continue;
|
||||
}
|
||||
}
|
||||
first=false;
|
||||
|
||||
net_deinit();
|
||||
usleep(2000);
|
||||
res = net_init_async(NULL, NULL);
|
||||
@ -245,6 +245,7 @@ static void * netcb (void *arg)
|
||||
{
|
||||
strcpy(wiiIP, inet_ntoa(hostip));
|
||||
networkInit = true;
|
||||
prevInit = true;
|
||||
}
|
||||
}
|
||||
if(netHalt != 2) LWP_SuspendThread(networkthread);
|
||||
|
Loading…
Reference in New Issue
Block a user