fatal: Standardize result definitions

This commit is contained in:
Michael Scire
2019-03-28 15:37:50 -07:00
parent b940f61d42
commit 285feba42b
6 changed files with 6 additions and 14 deletions

View File

@@ -97,10 +97,10 @@ static bool InRepairWithoutTimeReviserCartridge() {
void CheckRepairStatus() {
if (InRepairWithoutVolHeld()) {
ThrowFatalForSelf(FatalResult_InRepairWithoutVolHeld);
ThrowFatalForSelf(ResultFatalInRepairWithoutVolHeld);
}
if (InRepairWithoutTimeReviserCartridge()) {
ThrowFatalForSelf(FatalResult_InRepairWithoutTimeReviserCartridge);
ThrowFatalForSelf(ResultFatalInRepairWithoutTimeReviserCartridge);
}
}