Formatting

This commit is contained in:
Aria
2025-12-08 14:48:14 -06:00
parent c0423c1757
commit 07c1a9eb23
+2 -2
View File
@@ -74,7 +74,7 @@ class Edge {
let audioGraph;
class AudioGraph {
constructor() {
constructor(id) {
this.id = id;
this.activeSubGraphs = [];
this.subGraphs = {};
@@ -134,7 +134,7 @@ class AudioGraph {
export const getAudioGraph = () => {
if (audioGraph === undefined) {
audioGraph = new AudioGraph(id = 0);
audioGraph = new AudioGraph(0);
}
return audioGraph;
};