VNCclient: appearance small fixes

git-svn-id: svn://kolibrios.org@2196 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2011-09-16 14:09:21 +00:00
parent a9700f0e2f
commit 56719856b7
2 changed files with 7 additions and 12 deletions

View File

@ -151,9 +151,7 @@ START: ; start of execution
DEBUGF 1,'Drawing window\n'
mov eax,12
mov ebx,1
mcall
mcall 12, 1
mov eax,0 ; draw window
mov ebx,dword[framebuffer]
@ -162,7 +160,7 @@ START: ; start of execution
shr ebx,16
add ebx,2*xpos
add ecx,ypos+xpos
mov edx,0x03ffffff
mov edx,0xffffff
mcall
mov eax,4 ; label
@ -175,9 +173,7 @@ START: ; start of execution
call drawbuffer
mov eax,12
mov ebx,2
mcall
mcall 12, 2
jmp mainloop

View File

@ -123,7 +123,7 @@ pusha
mov eax, 8
mov ebx, 105*65536+200
mov ecx, 33*65536+12
mov ecx, 31*65536+13
mov edx, 4
mov esi, 0xEBEBEB
mcall
@ -174,9 +174,7 @@ connect_logon:
draw_window_logon:
mov eax, 12 ; function 12_logon:tell os about windowdraw
mov ebx, 1 ; 1, start of draw
mcall
mcall 12, 1 ; start window draw
pusha
; DRAW WINDOW
xor eax, eax ; function 0 _logon: define and draw window
@ -193,6 +191,7 @@ draw_window_logon:
mov esi, 0xCCCCCC
mcall
call print_text_logon
cmp byte[mode],0
@ -205,7 +204,7 @@ draw_window_logon:
mov esi, passstr-userstr ; text length
mcall
add bl,16
add bl,19
mov edx, passstr ; pointer to text beginning
mov esi, connect-passstr ; text length
mcall