aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/debug.c')
-rw-r--r--src/common/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/debug.c b/src/common/debug.c
index fe4de48..ab79b0f 100644
--- a/src/common/debug.c
+++ b/src/common/debug.c
@@ -126,11 +126,11 @@ const char *debug_db(double level_db)
static char text[128];
int l;
- strcpy(text, ": . : . : . : . : . : . : . : . : ");
+ strcpy(text, ": . : . : . : . : . : . : . : . | . : . : . : . : . : . : . : . :");
if (level_db <= 0.0)
return text;
l = (int)round(level2db(level_db));
- if (l > 3)
+ if (l > 48)
return text;
if (l < -48)
return text;