Increase size of desync log message ring buffer

This commit is contained in:
Jonathan G Rennison
2021-10-04 21:01:03 +01:00
parent 6f16655e6e
commit ea9a65edcd

View File

@@ -351,7 +351,7 @@ struct DesyncMsgLogEntry {
};
struct DesyncMsgLog {
std::array<DesyncMsgLogEntry, 128> log;
std::array<DesyncMsgLogEntry, 256> log;
unsigned int count = 0;
unsigned int next = 0;