From efa3272b673745f16506f35ca0a5e6c6342679c0 Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Sun, 10 Mar 2024 11:27:13 +0100 Subject: [PATCH] Bootstrap: Use Download Play as the placeholder title for the Camera App instead --- source/gui-sdl/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/gui-sdl/main.cpp b/source/gui-sdl/main.cpp index bec0d57..7c49c65 100644 --- a/source/gui-sdl/main.cpp +++ b/source/gui-sdl/main.cpp @@ -346,9 +346,9 @@ if (bootstrap_nand) // Experimental system bootstrapper // Normally, this is the Camera app, which isn't bundled in game update // partitions. Since the setup only reads the ExeFS icon that aren't // specific to the Camera app (likely to perform general checks), we - // use the Sound app as a drop-in replacement if needed. + // use the Download Play app as a drop-in replacement if needed. if (!std::filesystem::exists("./data/00040010/00022400")) { - std::filesystem::copy("./data/00040010/00022500", "./data/00040010/00022400", std::filesystem::copy_options::recursive); + std::filesystem::copy("./data/00040010/00022100", "./data/00040010/00022400", std::filesystem::copy_options::recursive); } std::filesystem::create_directories("./data/ro/sys");