Skip to content

Commit

Permalink
'dbminfo' now takes into account that echo delay unit is 2 ms, not 1 ms.
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzegorz Kraszewski committed Sep 23, 2014
1 parent 32749b6 commit 5b999e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbminfo.c
Expand Up @@ -221,7 +221,7 @@ void dump_dsp_effects(struct DB3Module *m)

printf("DSP EFFECTS\n\n");

printf("Global echo delay: %3d miliseconds.\n", m->DspDefaults.EchoDelay);
printf("Global echo delay: %3d miliseconds.\n", m->DspDefaults.EchoDelay * 2);
printf("Global echo feedback: %3d.\n", m->DspDefaults.EchoFeedback);
printf("Global echo mix-in: %3d.\n", m->DspDefaults.EchoMix);
printf("Global echo cross-mix: %3d.\n\n", m->DspDefaults.EchoCross);
Expand Down
2 changes: 1 addition & 1 deletion win32/dbminfo/dbminfo.c
Expand Up @@ -221,7 +221,7 @@ void dump_dsp_effects(struct DB3Module *m)

printf("DSP EFFECTS\n\n");

printf("Global echo delay: %3d miliseconds.\n", m->DspDefaults.EchoDelay);
printf("Global echo delay: %3d miliseconds.\n", m->DspDefaults.EchoDelay * 2);
printf("Global echo feedback: %3d.\n", m->DspDefaults.EchoFeedback);
printf("Global echo mix-in: %3d.\n", m->DspDefaults.EchoMix);
printf("Global echo cross-mix: %3d.\n\n", m->DspDefaults.EchoCross);
Expand Down

0 comments on commit 5b999e0

Please sign in to comment.