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:
hikerstk 2011-03-08 01:20:53 +00:00
parent 67022712ce
commit 9c2be44869

View File

@ -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