From 6dde73f39eef935b1475d57dcd9e89627866f953 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Fri, 6 Mar 2026 23:46:40 +0100 Subject: [PATCH] Install: copy themes/ in stage 2 (update and clean) Made-with: Cursor --- source/install_update.c | 4 ++++ 1 file changed, 4 insertions(+) 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;