summaryrefslogtreecommitdiffstats
path: root/Settings.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-04-09 15:44:26 -0300
committerHisham Muhammad <hisham@gobolinux.org>2015-04-09 15:44:26 -0300
commit01737ed66b9bfcb2b983a8834060f3bae9bf7da1 (patch)
tree39f59aa17b9271312e94083d5e473b89a26268a3 /Settings.c
parent2f450084772bdddaafd77e107679d20572d43b5d (diff)
Reset to the default scheme, not the last one.
Diffstat (limited to 'Settings.c')
-rw-r--r--Settings.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Settings.c b/Settings.c
index 6bd2e12e..68e2af5a 100644
--- a/Settings.c
+++ b/Settings.c
@@ -208,8 +208,7 @@ static bool Settings_read(Settings* this, const char* fileName, int cpuCount) {
this->delay = atoi(option[1]);
} else if (String_eq(option[0], "color_scheme")) {
this->colorScheme = atoi(option[1]);
- if (this->colorScheme < 0) this->colorScheme = 0;
- if (this->colorScheme >= LAST_COLORSCHEME) this->colorScheme = LAST_COLORSCHEME - 1;
+ if (this->colorScheme < 0 || this->colorScheme >= LAST_COLORSCHEME) this->colorScheme = 0;
} else if (String_eq(option[0], "left_meters")) {
Settings_readMeters(this, option[1], 0);
readMeters = true;

© 2014-2024 Faster IT GmbH | imprint | privacy policy