ldr: minVolt -> MinVolt

This commit is contained in:
Lightos1
2026-05-12 10:34:05 +02:00
parent 381a1eafc4
commit b4627ad171

View File

@@ -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) {