palette.c: declare relevant variables as static

This commit is contained in:
Thomas Bernard 2018-11-06 16:29:37 +01:00
parent afe65bfb92
commit b05cee4d0d
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C

View File

@ -40,8 +40,8 @@
#include "palette.h"
#include "shade.h"
byte Palette_view_is_RGB = 1; // Indique si on est en HSL ou en RGB
float Gamma = 1.0;
static byte Palette_view_is_RGB = 1; // Indique si on est en HSL ou en RGB
static float Gamma = 1.0;
// Coordinates of the color count (on histogram button)
static const int COUNT_X = 138;