From c7c3e21633a9c6982cc18635b0da7cf353177b17 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 (synced from 0f1fbe40dddb67b9fdd3454dcbc24c5fb13ddd19) --- src/ox/std/trace.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ox/std/trace.hpp b/src/ox/std/trace.hpp index 240fd231a..be36007e4 100644 --- a/src/ox/std/trace.hpp +++ b/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