Subversion Repositories Kolibri OS

Rev

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

Rev 6920 Rev 7188
Line 18... Line 18...
18
	
18
	
19
	for (j=0; j
19
	for (j=0; j
20
	{
20
	{
21
		strcpy(#temp_filename, j*304 + buf+72);
21
		strcpy(#temp_filename, j*304 + buf+72);
22
		end_pointer = #temp_filename+strlen(#temp_filename);
22
		end_pointer = #temp_filename+strlen(#temp_filename);
-
 
23
		if (strcmpi(end_pointer-4,".mp3")==0) 
-
 
24
		|| (strcmpi(end_pointer-4,".wav")==0)
-
 
25
		|| (strcmpi(end_pointer-3,".xm")==0)
23
		if (strcmpi(end_pointer-4,".mp3")!=0) continue;
26
		{
24
		cur = list.count;
27
			cur = list.count;
25
		files_mas[cur]=j;
28
			files_mas[cur]=j;
26
		list.count++;
29
			list.count++;			
-
 
30
		}
27
	}
31
	}
28
	SortByName(0, list.count-1);
32
	SortByName(0, list.count-1);
Line 29... Line 33...
29
}
33
}
30
 
34