Remove redundant else

This commit is contained in:
Lightos1
2026-03-15 21:24:35 +01:00
parent 17739377bd
commit 155a4ce50a
2 changed files with 4 additions and 4 deletions

View File

@@ -476,9 +476,9 @@ namespace ams::ldr::hoc::pcv::erista {
if (R_FAILED(entry.CheckResult())) {
#if defined(AMS_BUILD_FOR_AUDITING) || defined(AMS_BUILD_FOR_DEBUGGING)
panic::SmcError(panic::Patch);
#else
CRASH(entry.description);
#endif
CRASH(entry.description);
}
}
}

View File

@@ -814,9 +814,9 @@ namespace ams::ldr::hoc::pcv::mariko {
if (R_FAILED(entry.CheckResult())) {
#if defined(AMS_BUILD_FOR_AUDITING) || defined(AMS_BUILD_FOR_DEBUGGING)
panic::SmcError(panic::Patch);
#else
CRASH(entry.description);
#endif
CRASH(entry.description);
}
}
}