From 139721761aee2ddfd15041048bb000bfd7a56f46 Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Mon, 27 Jul 2026 19:17:53 +0200 Subject: [PATCH] fix uart log newline --- Source/Atmosphere/stratosphere/loader/source/oc/oc_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/oc_common.hpp b/Source/Atmosphere/stratosphere/loader/source/oc/oc_common.hpp index 1d85f646..e0fca750 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/oc_common.hpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/oc_common.hpp @@ -37,7 +37,7 @@ #if defined(HOC_IRAM_LOG) #define LOGGING(...) Log(__VA_ARGS__) #elif HOC_UART_LOG - #define LOGGING(...) AMS_LOG(__VA_ARGS__) + #define LOGGING(fmt, ...) AMS_LOG(fmt "\n", ##__VA_ARGS__) #endif #else