From d6965778556ea8cee51d2dbbcdd350a8d5ae60f0 Mon Sep 17 00:00:00 2001 From: masagrator Date: Tue, 8 Dec 2020 09:59:17 +0100 Subject: [PATCH] Update svc.h Fix Heap size alignement comment --- nx/include/switch/kernel/svc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index e8d9cf31..fc2869eb 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -274,7 +274,7 @@ typedef struct { /** * @brief Set the process heap to a given size. It can both extend and shrink the heap. * @param[out] out_addr Variable to which write the address of the heap (which is randomized and fixed by the kernel) - * @param[in] size Size of the heap, must be a multiple of 0x2000000 and [2.0.0+] less than 0x18000000. + * @param[in] size Size of the heap, must be a multiple of 0x200000 and [2.0.0+] less than 0x18000000. * @return Result code. * @note Syscall number 0x01. */