skin: supported new system color table

git-svn-id: svn://kolibrios.org@4778 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Akyltist 2014-04-06 10:06:51 +00:00
parent ea2aa2b26e
commit 31e84c92d6
2 changed files with 4 additions and 4 deletions

View File

@ -121,7 +121,7 @@ parse_skin_data:
lea esi, [ebx+SKIN_PARAMS.dtp.data]
mov edi, common_colours
mov ecx, [ebx+SKIN_PARAMS.dtp.size]
and ecx, 127
and ecx, 255
rep movsb
mov eax, dword[ebx+SKIN_PARAMS.margin.right]
mov dword[_skinmargins+0], eax

View File

@ -26,7 +26,7 @@ macro FuncTable name, table_name, [label]
}
uglobal
common_colours rd 32
common_colours rd 48
draw_limits RECT
endg
@ -173,7 +173,7 @@ align 4
syscall_display_settings.02:
dec ebx
mov esi, ecx
and edx, 127
and edx, 255
mov edi, common_colours
mov ecx, edx
rep movsb
@ -183,7 +183,7 @@ syscall_display_settings.02:
align 4
syscall_display_settings.03:
mov edi, ecx
and edx, 127
and edx, 255
mov esi, common_colours
mov ecx, edx
rep movsb