mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
Fix wrong house sort order
This commit is contained in:
@@ -70,9 +70,9 @@ short WhichStringFirst (StringPtr p1, StringPtr p2)
|
||||
{
|
||||
if (!foundIt)
|
||||
{
|
||||
if (p1[0] < p2[0]) // shortest string wins
|
||||
if (p1[0] > p2[0]) // shortest string wins
|
||||
greater = 1;
|
||||
else if (p1[0] > p2[0])
|
||||
else if (p1[0] < p2[0])
|
||||
greater = 2;
|
||||
}
|
||||
foundIt = true;
|
||||
|
Reference in New Issue
Block a user