From e0e2996e25cb0990de2e6bac47df84096d109e8a Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 20 Sep 2022 14:09:41 +0200 Subject: [PATCH] fix: Custom fonts not being loaded --- main/source/init/tasks.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }, }; }