From eb3706c20aec9e24c1262b08631075958bece7db Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sun, 14 Feb 2016 16:24:10 +0100 Subject: [PATCH] Fix version parsing for upgrade checker for short versions like "1.2" --- Core/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 89b515b550..1248c363e9 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -924,7 +924,7 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) { // Sometimes the download may not be finished when the main screen shows (if the user dismisses the // splash screen quickly), but then we'll just show the notification next time instead, we store the // upgrade number in the ini. -#if !defined(ARMEABI) +#if !defined(ARMEABI) // blackberry and stuff? why do we still keep this check? if (iRunCount % 10 == 0 && bCheckForNewVersion) { std::shared_ptr dl = g_DownloadManager.StartDownloadWithCallback( "http://www.ppsspp.org/version.json", "", &DownloadCompletedCallback);