Ignore Timing Clock messages

This commit is contained in:
unknown 2024-08-03 15:49:07 -04:00
parent 2006cd1db1
commit 9bb1b526ed

View File

@ -42,6 +42,8 @@ Return
;************************************************* ;*************************************************
ShowMidiInMessage: ; update the midimonitor gui ShowMidiInMessage: ; update the midimonitor gui
if (statusbyte == 248) ; Ignore Timing Clock messages
return
Gui,14:default Gui,14:default
Gui,14:ListView, In1 ; see the first listview midi in monitor Gui,14:ListView, In1 ; see the first listview midi in monitor
@ -57,11 +59,14 @@ Gui,14:ListView, In1 ; see the first listview midi in monitor
} }
return return
;************************************************* ;*************************************************
;* SHOW MIDI OUTPUT ON GUI MONITOR ;* SHOW MIDI OUTPUT ON GUI MONITOR
;************************************************* ;*************************************************
ShowMidiOutMessage: ; update the midimonitor gui ShowMidiOutMessage: ; update the midimonitor gui
if (statusbyte == 248) ; Ignore Timing Clock messages
return
Gui,14:default Gui,14:default
Gui,14:ListView, Out1 ; see the second listview midi out monitor Gui,14:ListView, Out1 ; see the second listview midi out monitor
@ -77,6 +82,7 @@ Gui,14:ListView, Out1 ; see the second listview midi out monitor
} }
return return
;************************************************* ;*************************************************
;* MIDI MONITOR GUI CODE ;* MIDI MONITOR GUI CODE
;************************************************* ;*************************************************