Skip to content

Commit

Permalink
Max text width is wider
Browse files Browse the repository at this point in the history
  • Loading branch information
ssejrog committed Jun 2, 2024
1 parent 97cc097 commit 1d1dbd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EZ-Template/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1d1dbd0

Please sign in to comment.