From 5bb38fbd2520d1030abe5a7d542ce34670969ceb Mon Sep 17 00:00:00 2001 From: MasaGratoR Date: Sat, 15 Nov 2025 11:39:39 +0100 Subject: [PATCH] Fix svcSetHeapSize note (#694) --- 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 38120a87..3009fe5f 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -296,7 +296,7 @@ typedef enum { /** * @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 0x200000 and [2.0.0+] less than 0x18000000. + * @param[in] size Size of the heap, must be a multiple of 0x200000. * @return Result code. * @note Syscall number 0x01. */