From 89f89f20aa124bdfe59b3e0e516466e5f77e1ebf Mon Sep 17 00:00:00 2001 From: GerdtR Date: Fri, 4 Oct 2013 09:38:32 +0000 Subject: [PATCH] Adjusted capitalization BGREDRAW.INC git-svn-id: svn://kolibrios.org@3973 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/system/icon_new/BGREDRAW.INC | 44 --------------------------- 1 file changed, 44 deletions(-) delete mode 100644 programs/system/icon_new/BGREDRAW.INC diff --git a/programs/system/icon_new/BGREDRAW.INC b/programs/system/icon_new/BGREDRAW.INC deleted file mode 100644 index 329e7fba8d..0000000000 --- a/programs/system/icon_new/BGREDRAW.INC +++ /dev/null @@ -1,44 +0,0 @@ -BGRedrawThread: - - mcall 40,010000b - - -BGRTmessages: - mcall 10 - sub eax,5 - jz BGRTRedrawIcons - - jmp BGRTmessages - -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: - jmp BGRTmessages - - - - - - -