emcDvbShift should be lowercase

This commit is contained in:
Lightos1
2025-12-03 13:29:07 +01:00
parent eff2ff26c2
commit e61ef8ccb2
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ volatile CustomizeTable C = {
.commonGpuVoltOffset = 0,
.EmcDvbShift = 10,
.emcDvbShift = 10,
// Primary
.t1_tRCD = 0,

View File

@@ -63,7 +63,7 @@ typedef struct CustomizeTable {
u32 commonGpuVoltOffset;
u32 EmcDvbShift;
u32 emcDvbShift;
// advanced config
u32 t1_tRCD;

View File

@@ -740,7 +740,7 @@ namespace ams::ldr::oc::pcv::mariko {
if (C.marikoEmcMaxClock <= EmcClkOSLimit)
R_SKIP();
int32_t voltAdd = 25 * C.EmcDvbShift;
int32_t voltAdd = 25 * C.emcDvbShift;
#define DVB_VOLT(zero, one, two) std::min(zero + voltAdd, 1050), std::min(one + voltAdd, 1025), std::min(two + voltAdd, 1000),