summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-09-04 13:38:20 -0400
committerStarla Insigna <starla4444@gmail.com>2011-09-04 13:38:20 -0400
commit0f2cacc1d98d8f0b1c3bec137ed8d810253e5248 (patch)
tree586ce3d09d71dc212f65ebe18b9424c9eb1b047f
parentaaca8a9c66d5e5aaedeb13d438f9074b3985c8ee (diff)
downloadcartcollect-0f2cacc1d98d8f0b1c3bec137ed8d810253e5248.tar.gz
cartcollect-0f2cacc1d98d8f0b1c3bec137ed8d810253e5248.tar.bz2
cartcollect-0f2cacc1d98d8f0b1c3bec137ed8d810253e5248.zip
Fixed display of Jump mode highscores
Refs #204
-rwxr-xr-xClasses/HighscoreListController.m4
1 files 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 @@
136 // Configure the cell... 136 // Configure the cell...
137 if (showGlobal) 137 if (showGlobal)
138 { 138 {
139 cellIdentifier = [NSString stringWithFormat:@"Global %d", [indexPath row]]; 139 cellIdentifier = [NSString stringWithFormat:@"Global-%d %d", modeControl.selectedSegmentIndex, [indexPath row]];
140 highscore = [globalHighscores objectAtIndex:[indexPath row]]; 140 highscore = [globalHighscores objectAtIndex:[indexPath row]];
141 } else { 141 } else {
142 cellIdentifier = [NSString stringWithFormat:@"Local %d", [indexPath row]]; 142 cellIdentifier = [NSString stringWithFormat:@"Local-%d %d", modeControl.selectedSegmentIndex, [indexPath row]];
143 highscore = [localHighscores objectAtIndex:[indexPath row]]; 143 highscore = [localHighscores objectAtIndex:[indexPath row]];
144 } 144 }
145 145