aboutsummaryrefslogtreecommitdiffhomepage
path: root/screen.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-13 09:52:17 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-13 09:52:17 -0800
commitdce189fc6d482cbbc49b9ad0fe9843235224ec9a (patch)
tree3c986ccdc20c349d921f73a74667e9414e247715 /screen.cpp
parent0a4c72e78b929237711717508746390e666f3811 (diff)
Support for setting both RGB and named colors on the same line, so the same config can work for multiple term types
Diffstat (limited to 'screen.cpp')
-rw-r--r--screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.cpp b/screen.cpp
index 388d474b..e74d4e8b 100644
--- a/screen.cpp
+++ b/screen.cpp
@@ -530,8 +530,8 @@ static void s_set_color( screen_t *s, buffer_t *b, int c )
s_writeb_buffer = b;
unsigned int uc = (unsigned int)c;
- set_color( highlight_get_rgb_color( uc & 0xffff, false ),
- highlight_get_rgb_color( (uc>>16)&0xffff, true ) );
+ set_color( highlight_get_color( uc & 0xffff, false ),
+ highlight_get_color( (uc>>16)&0xffff, true ) );
output_set_writer( writer_old );