diff options
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Screens/UScreenTop5.pas | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Game/Code/Screens/UScreenTop5.pas b/Game/Code/Screens/UScreenTop5.pas index 4d542bf0..57c61aa7 100644 --- a/Game/Code/Screens/UScreenTop5.pas +++ b/Game/Code/Screens/UScreenTop5.pas @@ -83,12 +83,10 @@ var begin
Fadeout := false;
- //ReadScore(AktSong);
+ PMax := PlayersPlay - 1;
- PMax := Ini.Players;
- if Ini.Players = 4 then Ini.Players := 5;
for I := 0 to PMax do
- DataBase.AddScore(AktSong, Ini.Difficulty, Ini.Name[I], Round(Player[I].ScoreTotalI));
+ DataBase.AddScore(AktSong, Ini.Difficulty, Ini.Name[I], Player[I].ScoreTotalI);
DataBase.WriteScore(AktSong);
DataBase.ReadScore(AktSong);
|