Skip to content

Commit

Permalink
07g and 09g will try 04g driver on 6.20 pops
Browse files Browse the repository at this point in the history
  • Loading branch information
hrimfaxi committed Jun 25, 2011
1 parent 6e3ac6d commit 13c0b99
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions popsloader/core/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,13 @@ static SceUID _sceKernelLoadModule(const char *path, int flags, SceKernelLMOptio
sprintf(newpath, "%spops_%02dg.prx", get_module_prefix(), (int)(psp_model + 1));
path = newpath;
} else if(pops_fw_version == FW_620 || pops_fw_version == FW_610 || pops_fw_version == FW_600) {
if(psp_model == PSP_GO || psp_model == PSP_4000) {
if(psp_model == PSP_1000 || psp_model == PSP_2000 || psp_model == PSP_3000) {
sprintf(newpath, "%spops.prx", get_module_prefix());
} else if(psp_model == PSP_GO || psp_model == PSP_4000) {
sprintf(newpath, "%spops_%02dg.prx", get_module_prefix(), (int)(psp_model + 1));
} else {
sprintf(newpath, "%spops.prx", get_module_prefix());
// 07g and 09g, try 04g driver
sprintf(newpath, "%spops_%02dg.prx", get_module_prefix(), 4);
}

path = newpath;
Expand Down

0 comments on commit 13c0b99

Please sign in to comment.