From 34e4cdff87e2a497dd56171b87b914bcd8afdd6a Mon Sep 17 00:00:00 2001 From: J-D-K Date: Wed, 28 May 2025 10:04:44 -0400 Subject: [PATCH] Fix cache loading mistake. --- source/data/TitleInfo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/data/TitleInfo.cpp b/source/data/TitleInfo.cpp index 6061b0f..b7e9f4f 100644 --- a/source/data/TitleInfo.cpp +++ b/source/data/TitleInfo.cpp @@ -68,6 +68,9 @@ data::TitleInfo::TitleInfo(NsApplicationControlData &controlData) std::snprintf(entry->name, TitleInfo::SIZE_PATH_SAFE, "%016lX", m_applicationID); } + // Oops. Need this. + TitleInfo::get_create_path_safe_title(); + // Load the icon to a texture. We're going to be lazy with the size here since it works anyway. m_icon = sdl::TextureManager::create_load_texture(entry->name, m_data.icon, sizeof(m_data.icon)); }