kscePowerSetCallbackEnabled -> kscePowerSetCallbackState

for vitasdk
This commit is contained in:
SilicaAndPina 2019-07-16 01:27:46 +12:00
parent f2e9b57448
commit ccd28a0e6e
7 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ Silica - All Graphics, Most Code
PSM INSTITUTIONS LLC (aka Silica) - Epic "Intellectual Property Notices" PSM INSTITUTIONS LLC (aka Silica) - Epic "Intellectual Property Notices"
Princess Of Sleeping - PUP Extractor Princess Of Sleeping - PUP Extractor
TheFlow0 - SPKG Decryptor (modoru) TheFlow0 - SPKG Decryptor (modoru)
"FAPS TEAM" / dots_tb - kscePowerSetCallbackEnabled(); nid "FAPS TEAM" / dots_tb - kscePowerSetCallbackState(); nid
zecoaxco - spoof_testkit / memdump zecoaxco - spoof_testkit / memdump
-- MEMDUMP CHANGES: -- MEMDUMP CHANGES:

Binary file not shown.

View File

@ -13,4 +13,4 @@ Cex2Rex_Kern:
- kdd - kdd
- kDecryptSpkgFile - kDecryptSpkgFile
- kgetTotalLeft - kgetTotalLeft
- kscePowerSetCallbackEnabledForUser - kscePowerSetCallbackStateForUser

View File

@ -1,4 +1,4 @@
int kdd(char *inf, char *of, int size); int kdd(char *inf, char *of, int size);
int kDecryptSpkgFile(char *in, char *out); int kDecryptSpkgFile(char *in, char *out);
int kgetTotalLeft(); int kgetTotalLeft();
int kscePowerSetCallbackEnabledForUser(int enable); int kscePowerSetCallbackStateForUser(int enable);

View File

@ -132,9 +132,9 @@ int kdd(char *inf, char *of, int size)
/* /*
* Magical FAPS TEAM technology V V V * Magical FAPS TEAM technology V V V
*/ */
int kscePowerSetCallbackEnabledForUser(int enable) int kscePowerSetCallbackStateForUser(int enable)
{ {
return kscePowerSetCallbackEnabled(enable); return kscePowerSetCallbackState(enable);
} }
int kDecryptSpkgFile(char *in, char *out) int kDecryptSpkgFile(char *in, char *out)

View File

@ -1 +1 @@
int kscePowerSetCallbackEnabled(int enable); int kscePowerSetCallbackState(int enable);

View File

@ -20,7 +20,7 @@ int getTotalLeft()
int scePowerSetCallbackEnabled(int enable) int scePowerSetCallbackEnabled(int enable)
{ {
return kscePowerSetCallbackEnabledForUser(enable); return kscePowerSetCallbackStateForUser(enable);
} }
void _start() __attribute__ ((weak, alias("module_start"))); void _start() __attribute__ ((weak, alias("module_start")));