From 72e12d091164b25c4617fe861badba19b2f6f3fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sat, 8 Jan 2011 12:38:42 +0100 Subject: [PATCH] gnuplot-gfx: fixed VGA color palette (grey lines need to be brighter) --- gnuplot-gfx/patches/070-linuxvga-truecolor.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnuplot-gfx/patches/070-linuxvga-truecolor.patch b/gnuplot-gfx/patches/070-linuxvga-truecolor.patch index 5043d60..40b7aca 100644 --- a/gnuplot-gfx/patches/070-linuxvga-truecolor.patch +++ b/gnuplot-gfx/patches/070-linuxvga-truecolor.patch @@ -1,7 +1,7 @@ Index: gnuplot-4.4.0/term/linux.trm =================================================================== --- gnuplot-4.4.0.orig/term/linux.trm 2011-01-06 16:42:27.000000000 +0100 -+++ gnuplot-4.4.0/term/linux.trm 2011-01-06 17:14:41.000000000 +0100 ++++ gnuplot-4.4.0/term/linux.trm 2011-01-08 12:28:08.000000000 +0100 @@ -94,8 +94,12 @@ #define _STRING_H_ #include @@ -11,7 +11,7 @@ Index: gnuplot-4.4.0/term/linux.trm +static int linux_vmode = G320x240x16M32; /* default mode */ +/* static int vgacolor[] = { 7, 8, 2, 3, 4, 5, 9, 14, 12, 15, 13, 10, 11, 1, 6 }; */ +static int vgacolor[] = { -+ 0x808080, 0xc0c0c0, 0x008000, 0x008080, 0x800000, 0x800080, ++ 0xc0c0c0, 0x808080, 0x008000, 0x008080, 0x800000, 0x800080, + 0x0000ff, 0xffff00, 0xff0000, 0xffffff, 0xff00ff, 0x00ff00, + 0x00ffff, 0x000080, 0x808000 }; static int graphics_on = FALSE;