From fbdcf91c8b0ca76848d9b863a90e23e8f16fdc2a Mon Sep 17 00:00:00 2001 From: TuxSH Date: Fri, 23 Dec 2016 15:15:54 +0100 Subject: [PATCH] Update svcOutputDebugString --- libctru/include/3ds/svc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libctru/include/3ds/svc.h b/libctru/include/3ds/svc.h index 12878c2..be62cf1 100644 --- a/libctru/include/3ds/svc.h +++ b/libctru/include/3ds/svc.h @@ -980,9 +980,9 @@ void svcBreak(UserBreakType breakReason); /** * @brief Outputs a debug string. * @param str String to output. - * @param length Length of the string to output. + * @param length Length of the string to output, needs to be positive. */ -Result svcOutputDebugString(const char* str, int length); +Result svcOutputDebugString(const char* str, s32 length); /** * @brief Creates a debug handle for an active process. * @param[out] debug Pointer to output the created debug handle to.