Code cleanup

This commit is contained in:
pagefault
2001-08-03 06:17:25 +00:00
parent 20ed0e65bf
commit bdefa45ff7
2 changed files with 23 additions and 23 deletions

View File

@@ -1756,16 +1756,16 @@ EXTSYM SystemTimewMinute
EXTSYM SystemTimewSecond
NEWSYM GetTimeInSeconds
call GetLocalTime
movzx eax,word [SystemTimewHour]
mov ebx,60
mul ebx
movzx ebx,word [SystemTimewMinute]
add eax,ebx
mov ebx,60
mul ebx
movzx ebx,word [SystemTimewSecond]
add eax,ebx
ret
call GetLocalTime
movzx eax,word[SystemTimewHour]
mov ebx,60
mul ebx
movzx ebx,word[SystemTimewMinute]
add eax,ebx
mov ebx,60
mul ebx
movzx ebx,word[SystemTimewSecond]
add eax,ebx
ret
NEWSYM WinIntRFAsmEnd