Set the outParam for CCRSysNeedsDRCFWUpdate

This commit is contained in:
Maschell 2023-01-02 13:57:01 +01:00
parent c3e2e01d1d
commit cf5a70c07c
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@ DECL_FUNCTION(uint32_t, CCRSysDRCFWUpdate, uint32_t u1) {
return 0;
}
DECL_FUNCTION(uint32_t, CCRSysNeedsDRCFWUpdate, uint32_t u1, uint32_t u2) {
DECL_FUNCTION(uint32_t, CCRSysNeedsDRCFWUpdate, uint32_t u1, uint32_t *needsUpdateOut) {
if (needsUpdateOut) {
*needsUpdateOut = false;
}
return 0;
}