Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 229 → Rev 230

/kernel/trunk/video/cursors.inc
192,10 → 192,20
align 4
proc set_cursor stdcall, hcursor:dword
mov eax, [hcursor]
cmp [eax+CURSOR.magic], 'CURS'
jne .fail
cmp [eax+CURSOR.size], CURSOR_SIZE
jne .fail
mov ebx, [CURRENT_TASK]
shl ebx, 8
xchg eax, [ebx+PROC_BASE+APPDATA.cursor]
ret
.fail:
mov eax, [def_cursor]
mov ebx, [CURRENT_TASK]
shl ebx, 8
xchg eax, [ebx+PROC_BASE+APPDATA.cursor]
ret
endp
 
proc vesa_cursor stdcall, hcursor:dword, src:dword, flags:dword
255,6 → 265,11
test eax, eax
jz .fail
 
mov ebx, [CURRENT_TASK]
shl ebx, 5
mov ebx, [0x3000+ebx+4]
mov [eax+CURSOR.pid], ebx
 
stdcall [create_cursor], eax, [src], [flags]
mov [handle], eax
.fail:
292,7 → 307,7
mov [cursor_map+4], eax
mov edx, cursor_map
mov [cursor_start], edx
add edx, 4
add edx, 8
mov [cursor_end], edx
 
stdcall load_driver, drv_hw_mouse