mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
Moved the application updater execution slightly later in the startup process.
This commit is contained in:
parent
e95ff8b4b9
commit
5d5be42918
|
@ -693,14 +693,6 @@ int main(int argc, char* argv[])
|
||||||
renderer = Renderer::getInstance();
|
renderer = Renderer::getInstance();
|
||||||
window = Window::getInstance();
|
window = Window::getInstance();
|
||||||
|
|
||||||
#if defined(APPLICATION_UPDATER)
|
|
||||||
std::unique_ptr<ApplicationUpdater> applicationUpdater;
|
|
||||||
if (!noUpdateCheck) {
|
|
||||||
applicationUpdater = std::make_unique<ApplicationUpdater>();
|
|
||||||
applicationUpdater->checkForUpdates();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ViewController::getInstance();
|
ViewController::getInstance();
|
||||||
CollectionSystemsManager::getInstance();
|
CollectionSystemsManager::getInstance();
|
||||||
Screensaver screensaver;
|
Screensaver screensaver;
|
||||||
|
@ -712,6 +704,14 @@ int main(int argc, char* argv[])
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(APPLICATION_UPDATER)
|
||||||
|
std::unique_ptr<ApplicationUpdater> applicationUpdater;
|
||||||
|
if (!noUpdateCheck) {
|
||||||
|
applicationUpdater = std::make_unique<ApplicationUpdater>();
|
||||||
|
applicationUpdater->checkForUpdates();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
window->pushGui(ViewController::getInstance());
|
window->pushGui(ViewController::getInstance());
|
||||||
|
|
||||||
if (Settings::getInstance()->getBool("SplashScreen"))
|
if (Settings::getInstance()->getBool("SplashScreen"))
|
||||||
|
|
Loading…
Reference in a new issue