mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
Remove automatic update check
This commit is contained in:
parent
0bc90dbdd4
commit
48956ad8a4
@ -38,8 +38,6 @@
|
||||
#include "wpad.h"
|
||||
#include "sys.h"
|
||||
|
||||
extern bool updateavailable;
|
||||
|
||||
struct discHdr *dvdheader = NULL;
|
||||
static bool Exiting = false;
|
||||
|
||||
@ -905,16 +903,7 @@ int GameBrowseMenu::MainLoop()
|
||||
UpdateClock();
|
||||
CheckDiscSlotUpdate();
|
||||
|
||||
if (updateavailable == true)
|
||||
{
|
||||
gprintf("\tUpdate Available\n");
|
||||
SetState(STATE_DISABLED);
|
||||
UpdateApp();
|
||||
updateavailable = false;
|
||||
SetState(STATE_DEFAULT);
|
||||
}
|
||||
|
||||
else if (poweroffBtn->GetState() == STATE_CLICKED)
|
||||
if (poweroffBtn->GetState() == STATE_CLICKED)
|
||||
{
|
||||
gprintf("\tpoweroffBtn clicked\n");
|
||||
int choice = 0;
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include "networkops.h"
|
||||
#include "https.h"
|
||||
#include "update.h"
|
||||
#include "gecko.h"
|
||||
#include "settings/ProxySettings.h"
|
||||
|
||||
#define PORT 4299
|
||||
@ -19,10 +20,8 @@
|
||||
u32 infilesize = 0;
|
||||
u32 uncfilesize = 0;
|
||||
|
||||
bool updateavailable = false;
|
||||
s32 connection;
|
||||
static s32 socket;
|
||||
static bool updatechecked = false;
|
||||
static bool networkinitialized = false;
|
||||
static bool checkincomming = false;
|
||||
static bool waitforanswer = false;
|
||||
@ -56,6 +55,7 @@ void Initialize_Network(int retries)
|
||||
getProxyInfo();
|
||||
wolfSSL_Init();
|
||||
networkinitialized = true;
|
||||
gprintf("Initialized network\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -248,7 +248,7 @@ void ResumeNetworkWait()
|
||||
}
|
||||
|
||||
/*********************************************************************************
|
||||
* Networkthread for background network initialize and update check with idle prio
|
||||
* Networkthread for background network initialize
|
||||
*********************************************************************************/
|
||||
static void *networkinitcallback(void *arg)
|
||||
{
|
||||
@ -259,16 +259,8 @@ static void *networkinitcallback(void *arg)
|
||||
|
||||
Initialize_Network();
|
||||
|
||||
if (networkinitialized == true && updatechecked == false)
|
||||
{
|
||||
|
||||
if (CheckUpdate() > 0)
|
||||
updateavailable = true;
|
||||
|
||||
//suspend thread
|
||||
updatechecked = true;
|
||||
if (networkinitialized)
|
||||
networkHalt = true;
|
||||
}
|
||||
|
||||
if (checkincomming)
|
||||
NetworkWait();
|
||||
|
Loading…
Reference in New Issue
Block a user