summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
diff options
context:
space:
mode:
authorMike <7153163+hackbar@users.noreply.github.com>2018-08-10 21:13:31 -0700
committerMike <7153163+hackbar@users.noreply.github.com>2018-08-23 18:32:29 -0700
commitdd8d7bba9868f92ea5a08c9e857ae05b9ea43652 (patch)
tree59631afdc20e779161dafb3f4168353b1e3e095d /Source/Android/app/src/main/java
parent248afb9fa7bfd7da362a69892b3f0eac854299d4 (diff)
Android: Get rid of the per-platform styles, as we only using the GC one.
I think the intention might have been to switch styles based on what platform was selected, but that never happened. Instead, everything just used the GC styles. All the platform-specific styles did was add an accent color (which tints the checkbox and text area elements). This adds a specific color for that instead of abusing a platform color. There should be no visual changes for this commit.
Diffstat (limited to 'Source/Android/app/src/main/java')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java
index 1f9abc61a3..01fc27aa4b 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java
@@ -210,7 +210,7 @@ public final class EmulationActivity extends AppCompatActivity
int themeId;
if (mDeviceHasTouchScreen)
{
- themeId = R.style.DolphinEmulationGamecube;
+ themeId = R.style.DolphinEmulationBase;
// Get a handle to the Window containing the UI.
mDecorView = getWindow().getDecorView();
@@ -229,7 +229,7 @@ public final class EmulationActivity extends AppCompatActivity
}
else
{
- themeId = R.style.DolphinEmulationTvGamecube;
+ themeId = R.style.DolphinEmulationTvBase;
}
setTheme(themeId);