From b4627ad171b96200949acf6131339e6e6e85eb1e Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Tue, 12 May 2026 10:34:05 +0200 Subject: [PATCH] ldr: minVolt -> MinVolt --- .../stratosphere/loader/source/oc/pcv/pcv_mariko.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 c13c1c60..0137ab12 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp @@ -807,10 +807,10 @@ namespace ams::ldr::hoc::pcv::mariko { max2 = C.marikoSocVmax; } - constexpr s32 minVolt = 637; + constexpr s32 MinVolt = 637; auto ClampVolt = [&](s32 value, s32 max) { - return std::clamp(value + voltAdd, minVolt, max); + return std::clamp(value + voltAdd, MinVolt, max); }; auto DvbVolt = [&](s32 zero, s32 one, s32 two) {