فهرست منبع

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

Steve Thielemann 3 سال پیش
والد
کامیت
04a164cd93
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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;