From 84f17f6a3a2be28f76311517cdfc67964d2db392 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 16 Sep 2020 21:18:02 -0700 Subject: [PATCH] kern: default to release config --- .../libmesosphere/include/mesosphere/kern_build_config.hpp | 2 +- libraries/libmesosphere/include/mesosphere/kern_debug_log.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libmesosphere/include/mesosphere/kern_build_config.hpp b/libraries/libmesosphere/include/mesosphere/kern_build_config.hpp index 14c774182..6f026f721 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_build_config.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_build_config.hpp @@ -15,7 +15,7 @@ */ #pragma once -#if 1 || defined(AMS_BUILD_FOR_AUDITING) +#if defined(AMS_BUILD_FOR_AUDITING) #define MESOSPHERE_BUILD_FOR_AUDITING #endif diff --git a/libraries/libmesosphere/include/mesosphere/kern_debug_log.hpp b/libraries/libmesosphere/include/mesosphere/kern_debug_log.hpp index dfabbaa05..e2cde1342 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_debug_log.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_debug_log.hpp @@ -40,7 +40,7 @@ namespace ams::kern { #ifndef MESOSPHERE_DEBUG_LOG_SELECTED #ifdef ATMOSPHERE_BOARD_NINTENDO_NX - #define MESOSPHERE_DEBUG_LOG_USE_UART_C + #define MESOSPHERE_DEBUG_LOG_USE_UART_A #else #error "Unknown board for Default Debug Log Source" #endif