android: Fix icon not showing if update title fails to load

This commit is contained in:
PabloMK7 2026-03-22 22:18:40 +01:00
parent 5a07260e1b
commit 7a600e28d2

View File

@ -75,7 +75,7 @@ GameInfoData* GetNewGameInfoData(const std::string& path) {
result = update_loader->ReadIcon(update_smdh);
if (result != Loader::ResultStatus::Success) {
is_encrypted = result == Loader::ResultStatus::ErrorEncrypted;
return {};
return original_smdh;
}
return update_smdh;
}();