From 155a4ce50a0d6feaecff9fdfd3cf68a3b7b5d26e Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Sun, 15 Mar 2026 21:24:35 +0100 Subject: [PATCH] Remove redundant else --- .../stratosphere/loader/source/oc/pcv/pcv_erista.cpp | 4 ++-- .../stratosphere/loader/source/oc/pcv/pcv_mariko.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_erista.cpp b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_erista.cpp index 83748a3f..96ae3e4e 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_erista.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_erista.cpp @@ -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); } } } diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp index f5925247..64edf931 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp @@ -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); } } }