From 8a85b3b69722602b42f5f6d9427ad58ff27f8650 Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Mon, 6 Feb 2017 17:20:03 -0800 Subject: [PATCH] Update Utility.cpp reduce stack size, it conflicts with some in-house build systems/compiler limits. --- examples/ThirdPartyLibs/Gwen/Utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ThirdPartyLibs/Gwen/Utility.cpp b/examples/ThirdPartyLibs/Gwen/Utility.cpp index 2da302d1b..fcf134a87 100644 --- a/examples/ThirdPartyLibs/Gwen/Utility.cpp +++ b/examples/ThirdPartyLibs/Gwen/Utility.cpp @@ -16,7 +16,7 @@ using namespace Gwen; UnicodeString Gwen::Utility::Format( const wchar_t* fmt, ... ) { - wchar_t strOut[ 4096 ]; + wchar_t strOut[ 2048 ]; va_list s; va_start( s, fmt );