From c6c26f1050d2b4bfc3a8c16d6f5f9a3e93d613cb Mon Sep 17 00:00:00 2001 From: Allanis Date: Mon, 4 Aug 2014 23:46:44 +0100 Subject: [PATCH] [Fix] Minor fix in last two commits. --- src/conf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index 0df8e5e..066230b 100644 --- a/src/conf.c +++ b/src/conf.c @@ -171,7 +171,8 @@ int conf_loadConfig(const char* file) { /* Input. */ i = 250; conf_loadInt("afterburn", i); - input_afterburnSensibility = (i < 0) ? UINT_MAX : (unsigned int)i; + input_afterburnSensibility = (i < 0) ? 0 : (unsigned int)i; + i = 0; /* Sound. */ conf_loadBool("nosound", i);