[XAM] Added missing nullptr check during Spa loading

This commit is contained in:
Gliniak
2025-03-07 20:58:45 +01:00
parent 523a2dc6e3
commit 6666b803fd

View File

@@ -61,6 +61,9 @@ bool XamState::IsUserSignedIn(uint64_t xuid) const {
}
void XamState::LoadSpaInfo(const SpaInfo* info) {
if (!info) {
return;
}
// Check if we have loaded SpaInfo already. If yes then check currently loaded
// version.
if (spa_info_) {