Fix documentation of screen name and commet sizes

This commit is contained in:
Joel16 2018-08-11 00:15:20 -05:00
parent 9e80d62754
commit a6ef5ee90f

View File

@ -5,9 +5,9 @@
#pragma once #pragma once
#include <3ds.h> #include <3ds.h>
#define FRIEND_SCREEN_NAME_SIZE 0x16 ///< 11 (0x16 because UTF-16) #define FRIEND_SCREEN_NAME_SIZE 0xB ///< 11-byte UTF-16 screen name
#define FRIEND_COMMENT_SIZE 0x22 ///< 16 (0x21 because UTF-16 + null character) #define FRIEND_COMMENT_SIZE 0x21 ///< 33-byte UTF-16 comment
#define FRIEND_LIST_SIZE 0x64 ///< 100 (Number of Friends) #define FRIEND_LIST_SIZE 0x64 ///< 100 (Max number of friends)
#pragma pack(push, 1) #pragma pack(push, 1)