diff options
Diffstat (limited to 'src/unittests/resources/map/speciallayer.cc')
-rw-r--r-- | src/unittests/resources/map/speciallayer.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/unittests/resources/map/speciallayer.cc b/src/unittests/resources/map/speciallayer.cc index ef9b79e48..49b50c932 100644 --- a/src/unittests/resources/map/speciallayer.cc +++ b/src/unittests/resources/map/speciallayer.cc @@ -21,6 +21,8 @@ #include "unittests/unittests.h" #include "client.h" +#include "configmanager.h" +#include "configuration.h" #include "dirs.h" #include "graphicsmanager.h" @@ -65,12 +67,16 @@ TEST_CASE("SpecialLayer updateCache", "") #endif // USE_SDL2 userPalette = new UserPalette; - theme = new Theme; - Theme::selectSkin(); Dirs::initRootDir(); Dirs::initHomeDir(); + setBrandingDefaults(branding); + ConfigManager::initConfiguration(); + + theme = new Theme; + Theme::selectSkin(); + ActorSprite::load(); SpecialLayer *layer = nullptr; |