diff --git a/config.c b/config.c index 9c1aa04..7414b69 100644 --- a/config.c +++ b/config.c @@ -454,9 +454,9 @@ inputMethod = (char *)iniparser_getstring(ini, "input:method", "fifo"); outputMethod = (char *)iniparser_getstring(ini, "output:method", "noncurses"); #endif -p->monstercat = 1.5 * iniparser_getdouble(ini, "smoothing:monstercat", 1); +p->monstercat = 1.5 * iniparser_getdouble(ini, "smoothing:monstercat", 0); p->waves = iniparser_getint(ini, "smoothing:waves", 0); -p->integral = iniparser_getdouble(ini, "smoothing:integral", 75); +p->integral = iniparser_getdouble(ini, "smoothing:integral", 77); p->gravity = iniparser_getdouble(ini, "smoothing:gravity", 100); p->ignore = iniparser_getdouble(ini, "smoothing:ignore", 0); diff --git a/example_files/config b/example_files/config index c058c28..4beb20e 100644 --- a/example_files/config +++ b/example_files/config @@ -129,11 +129,11 @@ # Percentage value for integral smoothing. Takes values from 0 - 100. # Higher values means smoother, but less precise. 0 to disable. -; integral = 70 +; integral = 77 # Disables or enables the so-called "Monstercat smoothing" with or without "waves". Set to 0 to disable. -; monstercat = 1 -; waves = 0; +; monstercat = 0 +; waves = 0 # Set gravity percentage for "drop off". Higher values means bars will drop faster. # Accepts only non-negative values. 50 means half gravity, 200 means double. Set to 0 to disable "drop off".