From ea9a65edcde4aae3a0e9e83fe8b2ade62d8782fe Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 4 Oct 2021 21:01:03 +0100 Subject: [PATCH] Increase size of desync log message ring buffer --- src/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.cpp b/src/debug.cpp index 8bb3332052..568b90c17c 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -351,7 +351,7 @@ struct DesyncMsgLogEntry { }; struct DesyncMsgLog { - std::array log; + std::array log; unsigned int count = 0; unsigned int next = 0;