Skip to content

Commit

Permalink
fixes syntax errors that prevent xcode build
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisC committed Dec 10, 2024
1 parent 9980c63 commit 25c9ceb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class SimplePlayEngine {
private var file: AVAudioFile?

// Whether we are playing.
private (set) var isPlaying = false
private(set) var isPlaying = false

// This block will be called every render cycle and will receive MIDI events
private let midiOutBlock: AUMIDIOutputEventBlock = { sampleTime, cable, length, data in return noErr }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MacOSATDriverServerApp: App {

var body: some Scene {
WindowGroup {
ContentView(hostModel: hostModel)
ContentView(hostModel: self.hostModel)
}
}
}

0 comments on commit 25c9ceb

Please sign in to comment.