diff --git a/src/core/system.cpp b/src/core/system.cpp index 5ce1741ec..1e0d88299 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -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; } }