[Android] Android uppercases the name of the tabs in the settings by default. So we don't have to call ".toUpperCase" in the string returns in getPageTitle().

This commit is contained in:
lioncash 2013-09-10 11:21:13 -04:00
parent 8ceb72612a
commit 84db868187
1 changed files with 3 additions and 3 deletions

View File

@ -135,13 +135,13 @@ public final class PrefsActivity extends Activity implements ActionBar.TabListen
switch(position)
{
case 0:
return getString(R.string.cpu_settings).toUpperCase();
return getString(R.string.cpu_settings);
case 1:
return getString(R.string.input_settings).toUpperCase();
return getString(R.string.input_settings);
case 2:
return getString(R.string.video_settings).toUpperCase();
return getString(R.string.video_settings);
default: // Should never happen.
return null;