From 1d1dbd018f69ae0b0cf4990f5f19b3a3d2de19fd Mon Sep 17 00:00:00 2001 From: Jess Zarchi Date: Sun, 2 Jun 2024 14:30:46 -0700 Subject: [PATCH] Max text width is wider --- src/EZ-Template/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EZ-Template/util.cpp b/src/EZ-Template/util.cpp index 4ef769af..bbc3e0e0 100644 --- a/src/EZ-Template/util.cpp +++ b/src/EZ-Template/util.cpp @@ -56,7 +56,7 @@ void screen_print(std::string text, int line) { std::string temp = ""; for (int i = 0; i < text.length(); i++) { - if (text[i] != '\n' && temp.length() + 1 > 32) { + if (text[i] != '\n' && temp.length() + 1 > 38) { auto last_word = get_last_word(temp); if (last_word == temp) { texts.push_back(temp);