fix: hex number formatting width

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2023-06-06 04:27:52 +02:00
parent f78bb963fb
commit aadbd26fab
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ proc midiEventPrinterProc() {.thread.} =
if recvBuf[0] <= 3:
for i in 0..<recvBuf[0].int:
stdout.write(fmt"{recvBuf[i+1]:#02X} ")
stdout.write(fmt"0x{recvBuf[i+1]:02X} ")
stdout.write("\n")
stdout.flushFile()

View File

@ -67,7 +67,7 @@ proc midiEventPrinterProc() =
break
elif event.size <= 3:
for i in 0..<event.size:
stdout.write(fmt"{event.buffer[i]:#02X} ")
stdout.write(fmt"0x{event.buffer[i]:02X} ")
stdout.write("\n")
stdout.flushFile()