From d6fec8bdaac55cc661d4b334057e8a686f68795a Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Wed, 21 Jan 2026 21:49:07 +0100 Subject: [PATCH] Fix r2p --- .../stratosphere/loader/source/oc/mtc_timing_value.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp b/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp index a358a3ed..62652f34 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp @@ -96,7 +96,7 @@ namespace ams::ldr::oc { const u32 tFAW = static_cast(tRRD * 4.0); const double tRPab = tRPpb + 3; - const u32 tR2P = 12 + (C.mem_burst_read_latency / 2); + const u32 tR2P = 12 + ((RL_DBI - 32) / 2); inline u32 tR2W; const u32 tRTM = RL + 9 + (tDQSCK_max / tCK_avg) + FLOOR(tRPST) + CEIL(10 / tCK_avg); // Fix? const u32 tRATM = tRTM + CEIL(10 / tCK_avg) - 12; // Fix? @@ -137,3 +137,4 @@ namespace ams::ldr::oc { } } +