Fixed sort order of addons.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8754 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-05-29 22:12:09 +00:00
parent 5acd7168c1
commit 637a77906f

View File

@ -226,7 +226,7 @@ public:
return m_id < a.m_id;
break;
case SO_DATE:
return m_date < a.m_date;
return m_date > a.m_date;
break;
} // switch
// Fix compiler warning.