strat: 0 -> ResultSuccess

This commit is contained in:
Michael Scire
2019-03-28 22:39:39 -07:00
parent 9427a5cf46
commit c6d67eab6a
51 changed files with 166 additions and 166 deletions

View File

@@ -92,10 +92,10 @@ Result BpcRebootManager::PerformReboot() {
return ResultAtmosphereMitmShouldForwardToSession;
case BpcRebootType::ToRcm:
RebootToRcm();
return 0;
return ResultSuccess;
case BpcRebootType::ToPayload:
default:
DoRebootToPayload();
return 0;
return ResultSuccess;
}
}