View Single Post
Old May 9th, 2006, 1:33 PM   #5
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
You're reading the high scores into HighScoresData, and then overwriting them with the next score. There's nothing in the HighScore array.

          i = 1;
          while not eof(ScoresFile)do
              begin
                  read (ScoresFile, HighScoresData);
                  HighScore[i] := HighScoresData;
                  i := i + 1;
              end;
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote