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,9 +42,11 @@ 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
LV_Add("",stb,statusbyte,chan,byte1,byte2) LV_Add("",stb,statusbyte,chan,byte1,byte2)
LV_ModifyCol(1,"center") LV_ModifyCol(1,"center")
LV_ModifyCol(2,"center") LV_ModifyCol(2,"center")
@ -57,14 +59,17 @@ 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
LV_Add("",stb,statusbyte,chan,byte1,byte2) LV_Add("",stb,statusbyte,chan,byte1,byte2)
LV_ModifyCol(1,"center") LV_ModifyCol(1,"center")
LV_ModifyCol(2,"center") LV_ModifyCol(2,"center")
@ -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
;************************************************* ;*************************************************