mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
[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:
parent
8ceb72612a
commit
84db868187
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue