(m291) Fixed issue with timestamps

This commit is contained in:
Devine Lu Linvega 2024-08-26 16:40:20 -07:00
parent 0ab6dc88e4
commit 713a05dc19
1 changed files with 3 additions and 3 deletions

View File

@ -576,13 +576,13 @@
( >> ) ( >> )
@<draw-time> ( time* -- ) @<draw-time> ( time* -- )
( x0:00:00 ) DUP2 #8ca0 DIV2 NIP <draw-dec> ( x0:00:00 ) DUP2 #8ca0 DIV2 NIP #06 DIVk MUL SUB <draw-dec>
( 0x:00:00 ) DUP2 #0e10 DIV2 NIP <draw-dec> ( 0x:00:00 ) DUP2 #0e10 DIV2 NIP <draw-dec>
[ LIT ": ] <draw-glyph> [ LIT ": ] <draw-glyph>
( 00:x0:00 ) DUP2 #0258 DIV2 NIP <draw-dec> ( 00:x0:00 ) DUP2 #0258 DIV2 NIP #06 DIVk MUL SUB <draw-dec>
( 00:0x:00 ) DUP2 #003c DIV2 NIP <draw-dec> ( 00:0x:00 ) DUP2 #003c DIV2 NIP <draw-dec>
[ LIT ": ] <draw-glyph> [ LIT ": ] <draw-glyph>
( 00:00:x0 ) DUP2 #000a DIV2 NIP <draw-dec> ( 00:00:x0 ) DUP2 #000a DIV2 NIP #06 DIVk MUL SUB <draw-dec>
( 00:00:0x ) NIP ( 00:00:0x ) NIP
( >> ) ( >> )