# HG changeset patch # User TheException # Date 1289253944 -3600 # Node ID 721bfa5f4f310c04aaec542519b4961b70985a8f # Parent 36632d5b8492d27e4f843cd0c1c4325b985388ff Fix wrong order in results screen when players team up diff -r 36632d5b8492 -r 721bfa5f4f31 QTfrontend/statsPage.cpp --- a/QTfrontend/statsPage.cpp Mon Nov 08 22:12:14 2010 +0100 +++ b/QTfrontend/statsPage.cpp Mon Nov 08 23:05:44 2010 +0100 @@ -195,7 +195,7 @@ QString playername = playerinfo.mid(i + 1); QString image; - if (lastColor == c && playerPosition <= 2) playerPosition = 1; + if (lastColor == c) playerPosition--; lastColor = c; switch (playerPosition)