mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Sort IConsole autocomplete list lexicographically
QoL update for the console.
This commit is contained in:
parent
8ebdf6fa65
commit
ecfc380f84
r5dev
@ -458,6 +458,7 @@ void CConsole::FindFromPartial(void)
|
||||
}
|
||||
else { break; }
|
||||
}
|
||||
std::sort(m_vsvSuggest.begin(), m_vsvSuggest.end(), CheckStringLexicographically);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -25,5 +25,6 @@ string StringEscape(const string& svInput);
|
||||
string StringUnescape(const string& svInput);
|
||||
vector<int> StringToBytes(const string& svInput, bool bNullTerminator);
|
||||
vector<int> PatternToBytes(const string& svInput);
|
||||
bool CheckStringLexicographically(const string& svA, const string& svB);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -441,3 +441,10 @@ vector<int> PatternToBytes(const string& svInput)
|
||||
}
|
||||
return vBytes;
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// For comparing input strings lexicographically
|
||||
bool CheckStringLexicographically(const string& svA, const string& svB)
|
||||
{
|
||||
return svA < svB;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user