From 112cf10293ee4504ca8201c93943455982a033bd Mon Sep 17 00:00:00 2001 From: Adubbz Date: Thu, 26 Sep 2019 07:48:19 +1000 Subject: [PATCH] Missed these --- nx/source/services/ncm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/source/services/ncm.c b/nx/source/services/ncm.c index f051457d..0cea8615 100644 --- a/nx/source/services/ncm.c +++ b/nx/source/services/ncm.c @@ -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) {