Remove debug print not needed anymore

This commit is contained in:
2025-05-05 19:29:55 -05:00
parent 3ca33acc8f
commit 9830dcd263

View File

@@ -997,13 +997,6 @@ void add_string_to_buf(std::string str, unsigned short indent) {
if(str.find_last_not_of(' ') == std::string::npos)
return;
// A bug keeps resurfacing where the text buffer gets corrupted somehow. Most of the letters become
// invisible and it is impossible to read what it says, which in turn makes debugging other bugs very hard.
// This makes sure you can see what the buffer was supposed to say.
#ifdef DEBUG
LOG(str);
#endif
if(indent > 20) indent = 20;
static bool inited;