Browse Source

Bugfix in timestrlen

Yann Weber 6 years ago
parent
commit
52da8734d0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      wtfstopw.asm

+ 2
- 2
wtfstopw.asm View File

@@ -82,8 +82,8 @@ section .data
82 82
 	align 8
83 83
 	hours: times 8 db '0' ; allows storing max hours in 1<<64 secs
84 84
 	timestr: db ":00:00.0           ", 0
85
-	align 8
86
-	timestrlen: equ $ - timestr
85
+	timestrend: align 8
86
+	timestrlen: equ timestrend - timestr
87 87
 	hourslen: equ timestr - hours ; hours len -> the max number of digits
88 88
 
89 89
 	lapsmsg: db "Lap : "

Loading…
Cancel
Save