diff options
| -rwxr-xr-x | Classes/HighscoreListController.m | 4 |
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 | ||
