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);