mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01: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
@ -135,13 +135,13 @@ public final class PrefsActivity extends Activity implements ActionBar.TabListen
|
|||||||
switch(position)
|
switch(position)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
return getString(R.string.cpu_settings).toUpperCase();
|
return getString(R.string.cpu_settings);
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
return getString(R.string.input_settings).toUpperCase();
|
return getString(R.string.input_settings);
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
return getString(R.string.video_settings).toUpperCase();
|
return getString(R.string.video_settings);
|
||||||
|
|
||||||
default: // Should never happen.
|
default: // Should never happen.
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user