diff --git a/main/source/init/tasks.cpp b/main/source/init/tasks.cpp index acb5edd0a..d9959c846 100644 --- a/main/source/init/tasks.cpp +++ b/main/source/init/tasks.cpp @@ -324,12 +324,12 @@ namespace hex::init { std::vector getInitTasks() { return { - { "Checking for updates...", checkForUpdates, true }, - { "Downloading information...", downloadInformation, true }, - { "Loading fonts...", loadFonts, true }, { "Creating directories...", createDirectories, false }, { "Loading settings...", loadSettings, false }, { "Loading plugins...", loadPlugins, false }, + { "Checking for updates...", checkForUpdates, true }, + { "Downloading information...", downloadInformation, true }, + { "Loading fonts...", loadFonts, true }, }; }