summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburg2004-09-21 16:47:44 +0000
committerburg2004-09-21 16:47:44 +0000
commitdae59af0adf1e6541867c9aa4cd222e5aeafbfa9 (patch)
tree1737b890ea40131b65fa9cf8b2977db7008c5de5
parent2f9746bd5c5dd83b66dbd832d34c22ab4afde10a (diff)
Modification de l'ordre des couleurs
Mise en commentaire de 2 lignes dans l'initialisation
-rw-r--r--i/serialplot/serialplot_sdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i/serialplot/serialplot_sdl.c b/i/serialplot/serialplot_sdl.c
index 958736e..8dbbb8b 100644
--- a/i/serialplot/serialplot_sdl.c
+++ b/i/serialplot/serialplot_sdl.c
@@ -7,11 +7,11 @@ draw (int melt, int n, int vals[], double scale[],int position[])
Uint32 color;
static const Uint8 colors[][3] =
{
- { 0, 0, 255 }, // bleu
+ { 255, 255, 0 }, // jaune
{ 0, 255, 0 }, // vert
+ { 0, 0, 255 }, // bleu
{ 255, 0, 0 }, // rouge
{ 255, 0, 255 }, // mauve
- { 255, 255, 0 }, // jaune
{ 0, 255, 255 }, // cyan
{ 255, 255, 255 }, // blanc
};