From 0f2cacc1d98d8f0b1c3bec137ed8d810253e5248 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 4 Sep 2011 13:38:20 -0400 Subject: Fixed display of Jump mode highscores Refs #204 --- Classes/HighscoreListController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/HighscoreListController.m b/Classes/HighscoreListController.m index 68ea2f6..7dbefa1 100755 --- a/Classes/HighscoreListController.m +++ b/Classes/HighscoreListController.m @@ -136,10 +136,10 @@ // Configure the cell... if (showGlobal) { - cellIdentifier = [NSString stringWithFormat:@"Global %d", [indexPath row]]; + cellIdentifier = [NSString stringWithFormat:@"Global-%d %d", modeControl.selectedSegmentIndex, [indexPath row]]; highscore = [globalHighscores objectAtIndex:[indexPath row]]; } else { - cellIdentifier = [NSString stringWithFormat:@"Local %d", [indexPath row]]; + cellIdentifier = [NSString stringWithFormat:@"Local-%d %d", modeControl.selectedSegmentIndex, [indexPath row]]; highscore = [localHighscores objectAtIndex:[indexPath row]]; } -- cgit 1.4.1