From 09899c0588ce821dc22fed4dd9966cc827a01d29 Mon Sep 17 00:00:00 2001 From: XorTroll Date: Sun, 10 May 2020 16:44:07 +0200 Subject: [PATCH] Remove outdated comment --- nx/source/runtime/diag.c | 1 - 1 file changed, 1 deletion(-) diff --git a/nx/source/runtime/diag.c b/nx/source/runtime/diag.c index 721c6fc2..111110d9 100644 --- a/nx/source/runtime/diag.c +++ b/nx/source/runtime/diag.c @@ -145,7 +145,6 @@ typedef struct { NX_INLINE DiagLogPacket *diagAllocateLogPackets(const size_t msg_len, size_t *out_packet_count) { size_t remaining_len = msg_len; size_t packet_count = 1; - // N allows a max length of 0x7F here instead of 0xFF, but we'll use 0xFF. while(remaining_len > DIAG_MAX_STRING_LEN) { packet_count++; remaining_len -= DIAG_MAX_STRING_LEN;