From a8a2f5c84ccdbe5cc12fd97db4e258b073b0f4a1 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sun, 24 May 2026 17:44:43 -0600 Subject: [PATCH] Disable OSReport in release builds --- src/m_Do/m_Do_machine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/m_Do/m_Do_machine.cpp b/src/m_Do/m_Do_machine.cpp index a8f4f6140f..ae22c5dbe2 100644 --- a/src/m_Do/m_Do_machine.cpp +++ b/src/m_Do/m_Do_machine.cpp @@ -754,7 +754,7 @@ void myGXVerifyCallback(GXWarningLevel param_1, u32 param_2, const char* param_3 #endif int mDoMch_Create() { -#if !TARGET_PC // We want crash logs. +#ifdef NDEBUG if (mDoMain::developmentMode == 0 || !(OSGetConsoleType() & 0x10000000)) { OSReportDisable(); }