From bbc355ad4459291e481fcbcec1de7b4edebd3099 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 3 Sep 2014 23:12:06 +0100 Subject: [PATCH] Disable stdout/stderr on windows as it just conflicts with debugout --- renderdoc/common/globalconfig.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renderdoc/common/globalconfig.h b/renderdoc/common/globalconfig.h index 0b633283e..8b77f793b 100644 --- a/renderdoc/common/globalconfig.h +++ b/renderdoc/common/globalconfig.h @@ -67,9 +67,11 @@ enum // whether to include file and line on log lines #define INCLUDE_LOCATION_IN_LOG +#if !defined(WIN32) // logs go to stdout/stderr #define OUTPUT_LOG_TO_STDOUT //#define OUTPUT_LOG_TO_STDERR +#endif // logs go to debug output (visual studio output window) #define OUTPUT_LOG_TO_DEBUG_OUT