From 105f4ae5f7fc3e9beada930ca7a6de3c205e93f2 Mon Sep 17 00:00:00 2001 From: profi200 Date: Tue, 26 Nov 2024 23:32:51 +0100 Subject: [PATCH] Increased CTRCARD clock from 4.18 to 13.4 MHz on ROM reads. (#873) --- arm9/source/gamecart/command_ctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/gamecart/command_ctr.c b/arm9/source/gamecart/command_ctr.c index 49c882984..3e2f8e2d7 100644 --- a/arm9/source/gamecart/command_ctr.c +++ b/arm9/source/gamecart/command_ctr.c @@ -27,7 +27,7 @@ void CTR_CmdReadData(u32 sector, u32 length, u32 blocks, void* buffer) (u32)((sector << 9) & 0xFFFFFFFF), 0x00000000, 0x00000000 }; - CTR_SendCommand(read_cmd, length, blocks, 0x704822C, buffer); + CTR_SendCommand(read_cmd, length, blocks, 0x104822C, buffer); // Clock divider 5 (13.4 MHz). Same as Process9. } void CTR_CmdReadHeader(void* buffer)