Krn: Fixed definition of local variables in the "create_cursor" function
git-svn-id: svn://kolibrios.org@10039 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c3dbc03cb9
commit
9b1c982736
|
@ -318,9 +318,11 @@ align 4
|
|||
; ecx= flags
|
||||
|
||||
create_cursor:
|
||||
.src equ esp
|
||||
.flags equ esp+4
|
||||
.hcursor equ esp+8
|
||||
virtual at esp
|
||||
.src dd ?
|
||||
.flags dd ?
|
||||
.hcursor dd ?
|
||||
end virtual
|
||||
|
||||
sub esp, 4 ;space for .hcursor
|
||||
push ecx
|
||||
|
|
Loading…
Reference in New Issue