Missed these

This commit is contained in:
Adubbz 2019-09-26 07:48:19 +10:00
parent c83fd743bb
commit 112cf10293

View File

@ -283,12 +283,12 @@ Result ncmContentStorageWriteContentForDebug(NcmContentStorage* cs, const NcmNca
Result ncmContentStorageGetFreeSpaceSize(NcmContentStorage* cs, u64* out_size) {
if (hosversionBefore(2,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
return serviceDispatchOut(&cs->s, 22, *out_size);
return _ncmCmdNoInOutU64(&cs->s, 22, out_size);
}
Result ncmContentStorageGetTotalSpaceSize(NcmContentStorage* cs, u64* out_size) {
if (hosversionBefore(2,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
return serviceDispatchOut(&cs->s, 23, *out_size);
return _ncmCmdNoInOutU64(&cs->s, 23, out_size);
}
Result ncmContentStorageFlushPlaceHolder(NcmContentStorage* cs) {