diff --git a/modules/web/fm95.html b/modules/web/fm95.html
index 3280c7f..105ffdf 100644
--- a/modules/web/fm95.html
+++ b/modules/web/fm95.html
@@ -158,8 +158,8 @@
@@ -219,8 +219,8 @@ function drawScope() {
ctx.fillRect(0, 0, W, H);
// determine y range
- let yMin = 0, yMax = 1;
- if (yscale === '2') { yMax = 2; }
+ let yMin = -1, yMax = 1;
+ if (yscale === '2') { yMin = -2; yMax = 2; }
else if (yscale === 'auto') {
const vals = [...histInput, ...histAudio].filter(v => v !== null);
if (vals.length) {