Update Utility.cpp

reduce stack size, it conflicts with some in-house build systems/compiler limits.
This commit is contained in:
erwincoumans 2017-02-06 17:20:03 -08:00 committed by GitHub
parent 7e08e960a1
commit 8a85b3b697

View File

@ -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 );