From 0f1fbe40dddb67b9fdd3454dcbc24c5fb13ddd19 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 7 May 2021 06:48:17 -0500 Subject: [PATCH] [ox/std] Increase trace buffer length --- deps/ox/src/ox/std/trace.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/ox/src/ox/std/trace.hpp b/deps/ox/src/ox/std/trace.hpp index 240fd231..be36007e 100644 --- a/deps/ox/src/ox/std/trace.hpp +++ b/deps/ox/src/ox/std/trace.hpp @@ -15,6 +15,7 @@ #include "bstring.hpp" #include "fmt.hpp" #include "hashmap.hpp" +#include "units.hpp" extern "C" { @@ -34,7 +35,7 @@ struct TraceMsg { int line = 0; uint64_t time = 0; const char *ch = ""; - BString<100> msg; + BString msg; }; template