diff --git a/source/install_update.c b/source/install_update.c index 3b1e662..7b17c08 100644 --- a/source/install_update.c +++ b/source/install_update.c @@ -106,6 +106,10 @@ int update_mode_install(omninx_variant_t variant) { res = folder_copy_with_progress_v2(src_path, "sd:/", "switch/"); if (res != FR_OK && res != FR_NO_FILE) return res; + s_printf(src_path, "%s/themes", staging); + res = folder_copy_with_progress_v2(src_path, "sd:/", "themes/"); + if (res != FR_OK && res != FR_NO_FILE) return res; + s_printf(src_path, "%s/warmboot_mariko", staging); res = folder_copy_with_progress_v2(src_path, "sd:/", "warmboot_mariko/"); if (res != FR_OK && res != FR_NO_FILE) return res;