mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-04 18:42:15 +02:00
Missed these
This commit is contained in:
parent
c83fd743bb
commit
112cf10293
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user