Skip to content

Commit

Permalink
get rid of MIDI warning in log
Browse files Browse the repository at this point in the history
  • Loading branch information
nosuchtim committed Dec 18, 2023
1 parent 3b18c2d commit 2919641
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"configurations": [

{
"name": "palette stop",
"name": "palette summarize tiny.log",
"type": "go",
"request": "launch",
"program": "${env:PALETTE_SOURCE}/cmd/palette/palette.go",
"args": ["stop"]
"args": ["summarize","${env:PALETTE_SOURCE}/data/logs/tiny.log"]
},
{
"name": "PK2GO - simple.k",
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.87
7.88
3 changes: 3 additions & 0 deletions kit/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ func SummarizeLog(fname string) error {
if !ok {
startdate = ""
}
if nloaded > 0 {
fmt.Printf("%s :: Previous session nloaded=%d\n",startdate,nloaded)
}
fmt.Printf("%s :: Starting Engine\n", startdate)
nloaded = 0
userMode = true
Expand Down
2 changes: 1 addition & 1 deletion kit/synth.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (synth *Synth) midiOutputEnabled() bool {
return false
}
if synth.state.output == nil {
LogWarn("Synth.MidiOutputEnabled: output is nil")
// LogWarn("Synth.MidiOutputEnabled: output is nil")
return false
}
return true
Expand Down
Binary file added release/palette_7.88_win_setup.exe
Binary file not shown.

0 comments on commit 2919641

Please sign in to comment.