System: Fix double error on load/boot cancel

This commit is contained in:
Stenzek 2024-07-14 21:32:10 +10:00
parent fee888758f
commit fae6b7ae86
No known key found for this signature in database

View File

@ -1649,7 +1649,9 @@ bool System::BootSystem(SystemBootParameters parameters, Error* error)
ClearRunningGame();
Host::OnSystemDestroyed();
Host::OnIdleStateChanged();
return false;
// Technically a failure, but user-initiated. Returning false here would try to display a non-existent error.
return true;
}
}