From 6d1d767819979112ad82e62f396ae4fb443df3f9 Mon Sep 17 00:00:00 2001 From: Maksym Date: Sat, 19 Oct 2024 18:53:11 +0200 Subject: [PATCH] modified: src/VMR/Strip.ts --- src/VMR/Strip.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VMR/Strip.ts b/src/VMR/Strip.ts index 7f5d892..56a8b7a 100644 --- a/src/VMR/Strip.ts +++ b/src/VMR/Strip.ts @@ -88,7 +88,7 @@ export class Strip extends VMObject { const element = changedBuses.A[busId]; script += `${this.buildParameterString(`A${busId}`)} = ${ element ? "1" : "0" - };`; + };\n`; } } if (changedBuses.B !== undefined) @@ -97,7 +97,7 @@ export class Strip extends VMObject { const outputToBus = changedBuses.B[busId]; script += `${this.buildParameterString(`B${busId}`)} = ${ outputToBus ? "1" : "0" - };`; + };\n`; } } this.setParameters(script);