diff options
Diffstat (limited to '077trace_browser.cc')
-rw-r--r-- | 077trace_browser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/077trace_browser.cc b/077trace_browser.cc index 6819a473..501eaa8f 100644 --- a/077trace_browser.cc +++ b/077trace_browser.cc @@ -192,9 +192,9 @@ void render_line(int screen_row, const string& s) { for (col = 0; col < tb_width() && col < SIZE(s); ++col) { char c = s.at(col); if (c == '\n') c = ';'; // replace newlines with semi-colons - tb_change_cell(col, screen_row, c, TB_WHITE, TB_DEFAULT); + tb_change_cell(col, screen_row, c, TB_WHITE, TB_BLACK); } for (; col < tb_width(); ++col) { - tb_change_cell(col, screen_row, ' ', TB_WHITE, TB_DEFAULT); + tb_change_cell(col, screen_row, ' ', TB_WHITE, TB_BLACK); } } |