git-svn-id: svn://kolibrios.org@1563 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Evgeny Grechnikov (Diamond) 2010-08-08 21:43:40 +00:00
parent d870ca09d5
commit 0a35216e52
3 changed files with 6 additions and 7 deletions

View File

@ -902,7 +902,7 @@ biosdisk_enum_root:
xor eax, eax xor eax, eax
ret ret
.big: .big:
push ecx push ecx edx
push -'0' push -'0'
mov ecx, 10 mov ecx, 10
@@: @@:
@ -917,7 +917,7 @@ biosdisk_enum_root:
add al, '0' add al, '0'
stosb stosb
jnz @b jnz @b
pop ecx pop edx ecx
pop eax pop eax
inc eax inc eax
ret ret

View File

@ -319,6 +319,9 @@ syscall_move_window: ;///// system function 67 ////////////////////////////////
shl edi, 5 shl edi, 5
add edi, window_data add edi, window_data
test [edi + WDATA.fl_wdrawn], 1
jz .exit
test [edi + WDATA.fl_wstate], WSTATE_MAXIMIZED test [edi + WDATA.fl_wstate], WSTATE_MAXIMIZED
jnz .exit jnz .exit
@ -1437,6 +1440,7 @@ window._.sys_set_window: ;/////////////////////////////////////////////////////
; was it already defined before? ; was it already defined before?
test [edi + WDATA.fl_wdrawn], 1 test [edi + WDATA.fl_wdrawn], 1
jnz .set_client_box jnz .set_client_box
or [edi + WDATA.fl_wdrawn], 1
; NOTE: commented out since doesn't provide necessary functionality ; NOTE: commented out since doesn't provide necessary functionality
; anyway, to be reworked ; anyway, to be reworked

View File

@ -2907,11 +2907,6 @@ sys_redrawstat:
mov eax, [Screen_Max_Y] mov eax, [Screen_Max_Y]
mov [edx + RECT.bottom], eax mov [edx + RECT.bottom], eax
mov edi, [TASK_BASE]
or [edi - twdw + WDATA.fl_wdrawn], 1 ; no new position & buttons from app
call sys_window_mouse
ret
srl1: srl1:
ret ret