From b13ba3ac37d8306076853d08f38a967bcf846d86 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Fri, 30 Jul 2010 00:31:52 +0000 Subject: [PATCH] Changed direction in which the GP entries are resorted: karts going up towards the top will be moving to the left side, karts going down to the right side. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5712 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/states_screens/race_result_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/states_screens/race_result_gui.cpp b/src/states_screens/race_result_gui.cpp index 9341e2d8a..fbae053b6 100644 --- a/src/states_screens/race_result_gui.cpp +++ b/src/states_screens/race_result_gui.cpp @@ -265,7 +265,7 @@ void RaceResultGUI::renderGlobal(float dt) m_current_displayed_points[i] = (float)m_new_overall_points[i]; break; case RR_RESORT_TABLE: - x = m_x_pos[i] +m_radius[i]*sin(m_timer/m_time_rotation*M_PI); + x = m_x_pos[i] -m_radius[i]*sin(m_timer/m_time_rotation*M_PI); y = m_centre_point[i]+m_radius[i]*cos(m_timer/m_time_rotation*M_PI); break; case RR_WAIT_TILL_END: