From 1c4ef163d7901c21d8c4c37bdfea87d1a2bdeb41 Mon Sep 17 00:00:00 2001 From: rolandnsharp Date: Sun, 5 Apr 2026 20:45:23 +1000 Subject: [PATCH] Increase default gain and time zoom Co-Authored-By: Claude Opus 4.6 (1M context) --- src/osc/scope.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osc/scope.nim b/src/osc/scope.nim index 55d71d9..a2d00aa 100644 --- a/src/osc/scope.nim +++ b/src/osc/scope.nim @@ -28,8 +28,8 @@ proc initScope*(w, h: int): Scope = samplesL: newSeq[float](4096), samplesR: newSeq[float](4096), sampleCount: 0, - gain: 5.0, - timeDiv: 2.25, + gain: 6.5, + timeDiv: 3.4, grid: gsOff )