From 2e2f1b09f7c13957a155e94016bc0dbbd328bce4 Mon Sep 17 00:00:00 2001 From: jakcron Date: Mon, 12 Oct 2015 09:28:41 +0800 Subject: [PATCH] [makerom] Fixed CpuSpeed typo. --- makerom/exheader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makerom/exheader.c b/makerom/exheader.c index a52fa42..0d4b0bf 100644 --- a/makerom/exheader.c +++ b/makerom/exheader.c @@ -315,7 +315,7 @@ int SetARM11SystemLocalInfoFlags(exhdr_ARM11SystemLocalCapabilities *arm11, rsf_ arm11->flag[0] |= rsf->AccessControlInfo.EnableL2Cache; if (rsf->AccessControlInfo.CpuSpeed) { - if(strcasecmp(rsf->AccessControlInfo.CpuSpeed, "256mhz") == 0) + if(strcasecmp(rsf->AccessControlInfo.CpuSpeed, "268mhz") == 0) arm11->flag[0] |= cpuspeed_268MHz << 1; else if(strcasecmp(rsf->AccessControlInfo.CpuSpeed, "804mhz") == 0) arm11->flag[0] |= cpuspeed_804MHz << 1;