diff options
author | Rinnegatamante | 2016-09-04 13:38:45 +0200 |
---|---|---|
committer | GitHub | 2016-09-04 13:38:45 +0200 |
commit | 160a002d7dffc31b0d28ea3386d0f3b3e4f6b6a2 (patch) | |
tree | 8f479202cba9a825d8081aa3ed930db8d4ab9c5a /include/user/power.h | |
parent | Merge pull request #32 from 173210/master (diff) | |
download | vds-libraries-160a002d7dffc31b0d28ea3386d0f3b3e4f6b6a2.tar.gz |
Added scePowerSetBusClockFrequency and scePowerSetGpuClockFrequency.
Diffstat (limited to 'include/user/power.h')
-rw-r--r-- | include/user/power.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/user/power.h b/include/user/power.h index 6e4df8c..592a499 100644 --- a/include/user/power.h +++ b/include/user/power.h @@ -25,7 +25,9 @@ int scePowerGetBatteryFullCapacity(); //? int scePowerGetArmClockFrequency(); //Get Clock Frequency of the ARM int scePowerGetBusClockFrequency(); //Get Clock Frequency of the BUS int scePowerGetGpuClockFrequency(); //Get Clock Frequency of the Gpu -int scePowerSetArmClockFrequency(int freq); // Set Cet Clock Frequency of the ARM +int scePowerSetArmClockFrequency(int freq); // Set Clock Frequency of the ARM +int scePowerSetBusClockFrequency(int freq); // Set Clock Frequency of the BUS +int scePowerSetGpuClockFrequency(int freq); // Set Clock Frequency of the Gpu #ifdef __cplusplus } |