diff --git a/common/TracyProtocol.hpp b/common/TracyProtocol.hpp index 14deebc2..2160811e 100644 --- a/common/TracyProtocol.hpp +++ b/common/TracyProtocol.hpp @@ -9,7 +9,7 @@ namespace tracy constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; } -enum : uint32_t { ProtocolVersion = 34 }; +enum : uint32_t { ProtocolVersion = 35 }; enum : uint32_t { BroadcastVersion = 1 }; using lz4sz_t = uint32_t; diff --git a/server/TracyVersion.hpp b/server/TracyVersion.hpp index eb2542f9..daa38c96 100644 --- a/server/TracyVersion.hpp +++ b/server/TracyVersion.hpp @@ -7,7 +7,7 @@ namespace Version { enum { Major = 0 }; enum { Minor = 6 }; -enum { Patch = 15 }; +enum { Patch = 16 }; } }