diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp b/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp index 9aa3d5f3..bac77101 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp @@ -59,7 +59,7 @@ volatile CustomizeTable C = { .commonGpuVoltOffset = 0, -.EmcDvbShift = 10, +.emcDvbShift = 10, // Primary .t1_tRCD = 0, diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/customize.hpp b/Source/Atmosphere/stratosphere/loader/source/oc/customize.hpp index 9f8e5149..b797bb5e 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/customize.hpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/customize.hpp @@ -63,7 +63,7 @@ typedef struct CustomizeTable { u32 commonGpuVoltOffset; - u32 EmcDvbShift; + u32 emcDvbShift; // advanced config u32 t1_tRCD; 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 89370e3f..8e1670fa 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp @@ -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),