Fix compile error after updating VS2019

Compiler reports out of heap space when compiling this file after updating VS 2019.
This commit is contained in:
mkwong98 2021-02-08 15:21:03 +08:00
parent 32185c5b59
commit e66b1aa804

View file

@ -52,7 +52,7 @@ struct TraceLoggerOptions
class TraceLogger
{
private:
static constexpr int ExecutionLogSize = 30000;
static constexpr int ExecutionLogSize = 20000;
//Must be static to be thread-safe when switching game
static string _executionTrace;