kolibrios/programs/system/icon_new/bgredraw.inc
GerdtR 9aa1618831 Fixed a bug with a pause at startup
git-svn-id: svn://kolibrios.org@3985 a494cfbc-eb01-0410-851d-a64ba20cac60
2013-10-08 10:18:04 +00:00

44 lines
736 B
PHP

BGRedrawThread:
mcall 40,010000b
BGRTRedrawIcons:
mcall 48,5
mov dx,ax
shr eax,16
sub dx,ax
mov [ScreenX],dx
mov ax,bx
shr ebx,16
sub ax,bx
mov [ScreenY],ax
mov ecx,[MaxNumIcon]
test ecx,ecx
jz .NoDraw
xor ebx,ebx
@@: push ecx
cmp [IconNoDraw],ebx
je .nd
stdcall DrawIcon,ebx,0
.nd:
inc ebx
pop ecx
loop @b
.NoDraw:
BGRTmessages:
mcall 10
sub eax,5
jz BGRTRedrawIcons
jmp BGRTmessages