mirror of
				https://github.com/aelurum/AssetStudio.git
				synced 2025-11-03 14:35:14 -05:00 
			
		
		
		
	Fix bug in alphanum sorting
This commit is contained in:
		@ -73,7 +73,7 @@ namespace AssetStudioGUI
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    result = MemoryExtensions.CompareTo(space1, space2, StringComparison.OrdinalIgnoreCase); 
 | 
					                    result = MemoryExtensions.CompareTo(space1, space2, StringComparison.InvariantCultureIgnoreCase);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (result != 0)
 | 
					                if (result != 0)
 | 
				
			||||||
 | 
				
			|||||||
@ -78,7 +78,7 @@ namespace AssetStudioGUI
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    result = MemoryExtensions.CompareTo(space1, space2, StringComparison.OrdinalIgnoreCase);
 | 
					                    result = MemoryExtensions.CompareTo(space1, space2, StringComparison.InvariantCultureIgnoreCase);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (result != 0)
 | 
					                if (result != 0)
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user