mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
Ignore case when sorting entries in the launcher
svn-id: r14756
This commit is contained in:
parent
18758f1b94
commit
a956d5ece6
@ -458,7 +458,7 @@ void LauncherDialog::updateListing() {
|
||||
// Insert the game into the launcher list
|
||||
int pos = 0, size = l.size();
|
||||
|
||||
while (pos < size && (description > l[pos]))
|
||||
while (pos < size && (scumm_stricmp(description.c_str(), l[pos].c_str()) > 0))
|
||||
pos++;
|
||||
l.insert_at(pos, description);
|
||||
_domains.insert_at(pos, iter->_key);
|
||||
|
Loading…
x
Reference in New Issue
Block a user