diff --git a/ios/RetroArch/RAModuleList.m b/ios/RetroArch/RAModuleList.m index e54ae1010f..14509497da 100644 --- a/ios/RetroArch/RAModuleList.m +++ b/ios/RetroArch/RAModuleList.m @@ -53,8 +53,7 @@ [_modules addObject:[RAModuleInfo moduleWithPath:modulePath data:[[RAConfig alloc] initWithPath:baseName]]]; } - [self setTitle:@"Choose Emulator"]; - + [self setTitle:[_game lastPathComponent]]; return self; } @@ -75,6 +74,11 @@ return _modules ? [_modules count] : 0; } +- (NSString*)tableView:(UITableView*)tableView titleForHeaderInSection:(NSInteger)section +{ + return @"Choose Emulator"; +} + - (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell* cell = [self.tableView dequeueReusableCellWithIdentifier:@"module"];