Explorar o código

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

Steve Thielemann %!s(int64=3) %!d(string=hai) anos
pai
achega
04a164cd93
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;