Browse Source

Off by one on the edges, non-console terminal.

Steve Thielemann 3 years ago
parent
commit
04a164cd93
1 changed files with 1 additions and 1 deletions
  1. 1 1
      render.cpp

+ 1 - 1
render.cpp

@@ -25,7 +25,7 @@ void stamp(std::time_t &stamp, door::Door &door) {
 }
 }
 
 
 void word_wrap(int left_side, door::Door &door, std::string text) {
 void word_wrap(int left_side, door::Door &door, std::string text) {
-  int workarea = door.width - left_side;
+  int workarea = door.width - (left_side + 1);
   bool first_line = true;
   bool first_line = true;
   door::ANSIColor color = door.previous;
   door::ANSIColor color = door.previous;