From 0e9adaf5102f2008fbfab5fe13ed4151d6e288bf Mon Sep 17 00:00:00 2001 From: The Dax Date: Mon, 3 Jun 2019 18:44:49 -0400 Subject: [PATCH] Make a note on setsysSetDeviceNickname that the buffer size needs to be at least 0x80 bytes there too. --- nx/include/switch/services/set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/set.h b/nx/include/switch/services/set.h index 6c862982..5dae946b 100644 --- a/nx/include/switch/services/set.h +++ b/nx/include/switch/services/set.h @@ -184,6 +184,6 @@ Result setsysGetDeviceNickname(char* buffer); /** * @brief Sets the system's nickname. - * @param buffer Pointer to read the nickname from. + * @param buffer Pointer to read the nickname from. (The buffer size needs to be at least 0x80 bytes) */ Result setsysSetDeviceNickname(char* buffer);