This commit is contained in:
dborth 2011-03-13 05:47:58 +00:00
parent bea8e9ef9b
commit 01c8e93f87

View File

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