Subversion Repositories Kolibri OS

Rev

Rev 6741 | Rev 6799 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6741 Rev 6797
Line 1553... Line 1553...
1553
	cmp word[edi+deflate_state.level],0
1553
	cmp word[edi+deflate_state.level],0
1554
	jle .end0 ;if (..>0)
1554
	jle .end0 ;if (..>0)
Line 1555... Line 1555...
1555
 
1555
 
1556
		; Check if the file is binary or text
1556
		; Check if the file is binary or text
1557
		mov ebx,[edi+deflate_state.strm]
1557
		mov ebx,[edi+deflate_state.strm]
1558
		cmp word[ebx+z_stream.data_type],Z_UNKNOWN
1558
		cmp dword[ebx+z_stream.data_type],Z_UNKNOWN
1559
		jne @f ;if (..==..)
1559
		jne @f ;if (..==..)
1560
			stdcall detect_data_type, edi
1560
			stdcall detect_data_type, edi
1561
			mov [ebx+z_stream.data_type],ax
1561
			mov [ebx+z_stream.data_type],eax
Line 1562... Line 1562...
1562
		@@:
1562
		@@:
1563
 
1563
 
1564
		; Construct the literal and distance trees
1564
		; Construct the literal and distance trees