changed some default values, no monstercat and more integral sommthing

master
karlstav 6 years ago
parent 61832bbbab
commit b680b6009b
  1. 4
      config.c
  2. 6
      example_files/config

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

@ -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".

Loading…
Cancel
Save