System: Fix double error on load/boot cancel
This commit is contained in:
parent
fee888758f
commit
fae6b7ae86
|
@ -1649,7 +1649,9 @@ bool System::BootSystem(SystemBootParameters parameters, Error* error)
|
||||||
ClearRunningGame();
|
ClearRunningGame();
|
||||||
Host::OnSystemDestroyed();
|
Host::OnSystemDestroyed();
|
||||||
Host::OnIdleStateChanged();
|
Host::OnIdleStateChanged();
|
||||||
return false;
|
|
||||||
|
// Technically a failure, but user-initiated. Returning false here would try to display a non-existent error.
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue