Parcourir la source

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

Steve Thielemann il y a 3 ans
Parent
commit
04a164cd93
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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) {
-  int workarea = door.width - left_side;
+  int workarea = door.width - (left_side + 1);
   bool first_line = true;
   door::ANSIColor color = door.previous;