Fixed GP sorting problem - stupid typo.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7844 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
67022712ce
commit
9c2be44869
@ -343,7 +343,7 @@ public:
|
||||
bool operator<(const SortData &a)
|
||||
{
|
||||
return ( (m_score > a.m_score) ||
|
||||
(m_score == m_score && m_race_time < a.m_race_time) );
|
||||
(m_score == a.m_score && m_race_time < a.m_race_time) );
|
||||
}
|
||||
|
||||
}; // SortData
|
||||
|
Loading…
x
Reference in New Issue
Block a user