diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-text/term-terminfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/term-terminfo.c b/src/fe-text/term-terminfo.c index 9f8b3b6f..85ac193b 100644 --- a/src/fe-text/term-terminfo.c +++ b/src/fe-text/term-terminfo.c @@ -239,8 +239,8 @@ void term_set_color(TERM_WINDOW *window, int col) if ((col & 0xf0) >> 4 != last_bg && ((col & 0xf0) != 0 || (col & ATTR_RESETBG) == 0)) { if (term_use_colors) { - terminfo_set_bg(last_bg); last_bg = (col & 0xf0) >> 4; + terminfo_set_bg(last_bg); } } |