Compare commits

..

2 Commits

Author SHA1 Message Date
D. Berge
12a762f44f Fix typo in @dougal/binary 2025-08-16 14:55:53 +02:00
D. Berge
ebf13abc28 Merge branch '337-fix-event-queue' into 'devel'
Resolve "Automatic event detection fault: soft start on every shot during line"

Closes #337

See merge request wgp/dougal/software!61
2025-08-16 12:55:15 +00:00

View File

@@ -693,7 +693,7 @@ class DougalBinaryChunkSequential extends ArrayBuffer {
getRecord (index) { getRecord (index) {
if (index < 0 || index >= this.jCount) throw new Error(`Invalid record index: ${index}`); if (index < 0 || index >= this.jCount) throw new Error(`Invalid record index: ${index}`);
const arr = [thid.udv, this.i, this.j0 + index * this.Δj]; const arr = [this.udv, this.i, this.j0 + index * this.Δj];
for (let m = 0; m < this.ΔelemCount; m++) { for (let m = 0; m < this.ΔelemCount; m++) {
const values = this.Δelem(m); const values = this.Δelem(m);