(iOS) Naming - change 'Emulators' to 'Cores'

This commit is contained in:
twinaphex 2013-05-28 12:20:56 +02:00
parent b547f354cb
commit bbbde2f3f6
2 changed files with 3 additions and 3 deletions

View File

@ -311,7 +311,7 @@ static const bool font_enable = true;
// If your monitor does not run at 60Hz, or something close to it, disable VSync,
// and leave this at its default.
#if defined(__QNX__)
static const float refresh_rate = 59.86;
static const float refresh_rate = 59.98;
#elif defined(RARCH_CONSOLE)
static const float refresh_rate = 59.94;
#else

View File

@ -67,9 +67,9 @@
- (NSString*)tableView:(UITableView*)tableView titleForHeaderInSection:(NSInteger)section
{
if (_supported.count)
return (section == 0) ? @"Suggested Emulators" : @"Other Emulators";
return (section == 0) ? @"Suggested Cores" : @"Other Cores";
return @"All Emulators";
return @"All Cores";
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section