FSORT and BSORT now sort in Ascending order as expected

This commit is contained in:
mysticbbs 2012-02-24 10:01:04 -05:00
parent a0bafcb2d4
commit c47d3e6caf
2 changed files with 5 additions and 2 deletions

View File

@ -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.

View File

@ -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);