diff --git a/src/gameboard.cpp b/src/gameboard.cpp index 206866de..81460861 100644 --- a/src/gameboard.cpp +++ b/src/gameboard.cpp @@ -87,7 +87,7 @@ std::array make_patterned_bars(int playsize) { const auto generate_x_bar_pattern = [playsize](const bar_pattern_t t) { enum { PATTERN_HEAD, PATTERN_MID, PATTERN_TAIL }; constexpr auto sp = " "; - constexpr auto separator = "──────"; + constexpr auto separator = "────────────"; std::ostringstream temp_richtext; temp_richtext << sp << std::get(t); for (auto i = 0; i < playsize; i++) { @@ -117,10 +117,16 @@ std::string drawSelf(gameboard_data_array_t gbda) { const auto is_first_col = (x == 0); const auto sp = (is_first_col ? " " : " "); str_os << sp; - str_os << "│ "; + //change 2 + if(is_first_col == true){ + str_os << " |";} + else{ + str_os << " |"; + } str_os << getTileOnGameboardDataArray(gbda, point2D_t{x, y}); } - str_os << " │"; + //change3 + str_os << " |"; str_os << "\n"; } str_os << std::get(vertibar);