Skip to content

Commit

Permalink
add cpu speed option to max out all frequencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rsn8887 committed Mar 16, 2018
1 parent c4ea6b3 commit f871a3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/PSP2/main_psp.cpp
Expand Up @@ -245,6 +245,13 @@ int main(int argc, char **argv)
case 6:
scePowerSetArmClockFrequency(444);
break;
case 7:
// Setting maximum clocks
scePowerSetArmClockFrequency(444);
scePowerSetBusClockFrequency(222);
scePowerSetGpuClockFrequency(222);
scePowerSetGpuXbarClockFrequency(166);
break;
}

// Read RAM size
Expand Down
3 changes: 2 additions & 1 deletion src/PSP2/prefs_editor_psp.cpp
Expand Up @@ -259,8 +259,9 @@ void psp_create_floppy(void *arg)
{ "166 MHz", 2 },
{ "266 MHz", 3 },
{ "300 MHz", 4 },
{ "333 MHz", 5 },
{ "333 MHz", 5 },
{ "444 MHz", 6 },
{ "Max CPU/GPU/Bus", 7 },
{ 0, GUI_END_OF_LIST }
};

Expand Down

0 comments on commit f871a3d

Please sign in to comment.