This repository was archived by the owner on Mar 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ static const std::string versionCheckUrl = mainUrl + "version.txt";
33
33
static const std::string mainDownloadUrlDev = mainUrl + " devUpdates/" ;
34
34
static const std::string VersionCheckUrlDev = mainUrl + " devVersion.txt" ;
35
35
36
- static const u32 version=0x00060469 ;
36
+ static const u32 version=0x00060471 ;
37
37
38
38
std::string generateVersionString (u32 version);
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Updater::Updater(MenuManager* manager, bool* exitLoop)
37
37
Result Updater::checkForUpdate ()
38
38
{
39
39
Result ret = checkVersion ();
40
- if (this ->onlineVersion > 0 )
40
+ if (this ->onlineVersion > version )
41
41
{
42
42
if (this ->updaterSettings ->getValue (SETTINGS_UPDATE_NOTIFICATION))
43
43
this ->createUpdateNotification ();
@@ -57,7 +57,7 @@ Result Updater::updateApplication()
57
57
Result res = 0 ;
58
58
if (this ->onlineVersion == 0 )
59
59
this ->checkVersion ();
60
- if (this ->onlineVersion >0 )
60
+ if (this ->onlineVersion >version )
61
61
{
62
62
res = this ->downloadUpdate ();
63
63
if (res == 0 )
You can’t perform that action at this time.
0 commit comments