From dd8d7bba9868f92ea5a08c9e857ae05b9ea43652 Mon Sep 17 00:00:00 2001 From: Mike <7153163+hackbar@users.noreply.github.com> Date: Fri, 10 Aug 2018 21:13:31 -0700 Subject: 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. --- .../java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Android/app/src/main/java') 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); -- cgit v1.2.3