From dc4576d327b6953e38ea21fc9ef0898640d65d99 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 9 Apr 2015 15:19:31 -0300 Subject: [PATCH] Fix saving new color scheme. --- Settings.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Settings.c b/Settings.c index 6bbfe044..6bd2e12e 100644 --- a/Settings.c +++ b/Settings.c @@ -10,6 +10,7 @@ in the source distribution for its full text. #include "String.h" #include "Vector.h" +#include "CRT.h" #include #include @@ -208,7 +209,7 @@ static bool Settings_read(Settings* this, const char* fileName, int cpuCount) { } else if (String_eq(option[0], "color_scheme")) { this->colorScheme = atoi(option[1]); if (this->colorScheme < 0) this->colorScheme = 0; - if (this->colorScheme > 5) this->colorScheme = 5; + if (this->colorScheme >= LAST_COLORSCHEME) this->colorScheme = LAST_COLORSCHEME - 1; } else if (String_eq(option[0], "left_meters")) { Settings_readMeters(this, option[1], 0); readMeters = true;