Skip to content

Commit 6d05a1e

Browse files
Merge pull request #30 from SKGleba/topr
whitelisted 3.74, bumped ver to 2.3
2 parents f99ae34 + 8788e36 commit 6d05a1e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Requirements
66

7-
- Your device must already run **HENkaku/h-encore** on firmwares 3.60-3.73 in order to use this software.
7+
- Your device must already run **HENkaku/h-encore** on firmwares 3.60-3.74 in order to use this software.
88
- Your device's battery has be at least at 50%.
99
- All your plugins must be disabled, therefore you will not be able to launch the downgrader from a SD2VITA and hence, you must have a Memory Card (or Internal Storage).
1010
- If you have installed IMCUnlock by SKGleba, it is recommended to uninstall it first before attempting to downgrade to a firmware lower than 2.10.

kernel.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ static int ksceKernelStartPreloadedModulesPatched(SceUID pid) {
8484
int res = TAI_CONTINUE(int, ksceKernelStartPreloadedModulesRef, pid);
8585

8686
char titleid[32];
87-
ksceKernelGetProcessTitleId(pid, titleid, sizeof(titleid));
87+
ksceKernelSysrootGetProcessTitleId(pid, titleid, sizeof(titleid));
8888

8989
if (strcmp(titleid, "NPXS10999") == 0) {
9090
ksceKernelLoadStartModuleForPid(pid, "vs0:sys/external/libshellsvc.suprx", 0, NULL, 0, NULL, NULL);
@@ -372,7 +372,7 @@ int k_modoru_get_factory_firmware(void) {
372372

373373
unsigned int factory_fw = -1;
374374

375-
void *sysroot = ksceKernelGetSysrootBuffer();
375+
void* sysroot = ksceKernelSysrootGetKblParam();
376376
if (sysroot) {
377377
factory_fw = *(unsigned int *)(sysroot + 8);
378378
if (*(unsigned int *)(sysroot + 4) > 0x03700011)

main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ int main(int argc, char *argv[]) {
264264
psvDebugScreenInit();
265265
sceKernelPowerLock(0);
266266

267-
printf("-- modoru v2.1\n");
267+
printf("-- modoru v2.3\n");
268268
printf(" by TheFloW\n\n");
269269

270270
if (sceIoDevctl("ux0:", 0x3001, NULL, 0, NULL, 0) == 0x80010030)
@@ -345,7 +345,7 @@ int main(int argc, char *argv[]) {
345345
ErrorExit(10000, "Error you cannot go lower than your factory firmware.");
346346

347347
if (!bypass) {
348-
if (current_version > 0x03730011)
348+
if (current_version > 0x03740011)
349349
ErrorExit(10000, "Error your current system software version is not supported.");
350350
}
351351

pkg/template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<frame id="frame4">
2121
<liveitem>
2222
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
23-
<str size="18" color="#000000" shadow="off">v2.1</str>
23+
<str size="18" color="#000000" shadow="off">v2.3</str>
2424
</text>
2525
</liveitem>
2626
</frame>

0 commit comments

Comments
 (0)