From 713a05dc195b526a93594e0c3d401a9d9df07ebb Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Mon, 26 Aug 2024 16:40:20 -0700 Subject: [PATCH] (m291) Fixed issue with timestamps --- gui/m291/src/m291.tal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/m291/src/m291.tal b/gui/m291/src/m291.tal index 4be4ebc..7552fad 100644 --- a/gui/m291/src/m291.tal +++ b/gui/m291/src/m291.tal @@ -576,13 +576,13 @@ ( >> ) @ ( time* -- ) - ( x0:00:00 ) DUP2 #8ca0 DIV2 NIP + ( x0:00:00 ) DUP2 #8ca0 DIV2 NIP #06 DIVk MUL SUB ( 0x:00:00 ) DUP2 #0e10 DIV2 NIP [ LIT ": ] - ( 00:x0:00 ) DUP2 #0258 DIV2 NIP + ( 00:x0:00 ) DUP2 #0258 DIV2 NIP #06 DIVk MUL SUB ( 00:0x:00 ) DUP2 #003c DIV2 NIP [ LIT ": ] - ( 00:00:x0 ) DUP2 #000a DIV2 NIP + ( 00:00:x0 ) DUP2 #000a DIV2 NIP #06 DIVk MUL SUB ( 00:00:0x ) NIP ( >> )