FSORT and BSORT now sort in Ascending order as expected
This commit is contained in:
parent
a0bafcb2d4
commit
c47d3e6caf
|
@ -3847,3 +3847,6 @@
|
|||
|
||||
! Mystic will no longer shell to the console and get "stuck" when trying
|
||||
to execute an archive that has a blank command line in the configuration
|
||||
|
||||
! MBBSUTIL was sorting BBS Lists and File Lists in reverse alphabetical
|
||||
order. This is now fixed to sort as most people would expect.
|
||||
|
|
|
@ -235,7 +235,7 @@ Begin
|
|||
{$ENDIF}
|
||||
End;
|
||||
|
||||
SortList.Sort(1, SortList.Total, qDescending);
|
||||
SortList.Sort(1, SortList.Total, qAscending);
|
||||
|
||||
For A := 1 to SortList.Total Do Begin
|
||||
Seek (FDirFile, SortList.Data[A]^.Ptr);
|
||||
|
@ -489,7 +489,7 @@ Procedure Sort_BBS_List;
|
|||
End;
|
||||
End;
|
||||
|
||||
SortList.Sort(1, SortList.Total, qDescending);
|
||||
SortList.Sort(1, SortList.Total, qAscending);
|
||||
|
||||
For A := 1 to SortList.Total Do Begin
|
||||
Seek (TBBSFile, SortList.Data[A]^.Ptr);
|
||||
|
|
Loading…
Reference in New Issue