summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2013-11-15 16:48:36 -0500
committerLioncash <mathew1800@gmail.com>2013-11-15 16:48:36 -0500
commit4bb22aa0ab7c06c28e09de0f1b6db042ad23e84a (patch)
treee9aaa990838a32983fd9651dc9ef416936dc78c8 /Source/Android
parentd3731d0827f9d991570423b88158c09b5f61ea9f (diff)
[Android] Indicate whether or not the device supports NEON within the About fragment.
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/res/values-ja/strings.xml1
-rw-r--r--Source/Android/res/values/strings.xml1
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/AboutFragment.java5
3 files changed, 5 insertions, 2 deletions
diff --git a/Source/Android/res/values-ja/strings.xml b/Source/Android/res/values-ja/strings.xml
index bf19db23f0..f5858aa4bb 100644
--- a/Source/Android/res/values-ja/strings.xml
+++ b/Source/Android/res/values-ja/strings.xml
@@ -11,6 +11,7 @@
<!-- About Fragment -->
<string name="build_revision">ビルドのバージョン</string>
<string name="supports_gles3">サポートのOpenGL ES 3</string>
+ <string name="supports_neon">サポートのNEON</string>
<!-- Folder Browser -->
<string name="current_dir">現在のディレクトリ: %1$s</string>
diff --git a/Source/Android/res/values/strings.xml b/Source/Android/res/values/strings.xml
index 983f9e6ace..0f56eb1df4 100644
--- a/Source/Android/res/values/strings.xml
+++ b/Source/Android/res/values/strings.xml
@@ -11,6 +11,7 @@
<!-- About Fragment -->
<string name="build_revision">Build Revision</string>
<string name="supports_gles3">Supports OpenGL ES 3</string>
+ <string name="supports_neon">Supports NEON</string>
<!-- Folder Browser -->
<string name="current_dir">Current Dir: %1$s</string>
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/AboutFragment.java b/Source/Android/src/org/dolphinemu/dolphinemu/AboutFragment.java
index 8b29e607d7..6a0d033265 100644
--- a/Source/Android/src/org/dolphinemu/dolphinemu/AboutFragment.java
+++ b/Source/Android/src/org/dolphinemu/dolphinemu/AboutFragment.java
@@ -35,12 +35,13 @@ public final class AboutFragment extends ListFragment
View rootView = inflater.inflate(R.layout.gamelist_listview, container, false);
ListView mMainList = (ListView) rootView.findViewById(R.id.gamelist);
- String yes = getString(R.string.yes);
- String no = getString(R.string.no);
+ final String yes = getString(R.string.yes);
+ final String no = getString(R.string.no);
List<AboutFragmentItem> Input = new ArrayList<AboutFragmentItem>();
Input.add(new AboutFragmentItem(getString(R.string.build_revision), NativeLibrary.GetVersionString()));
Input.add(new AboutFragmentItem(getString(R.string.supports_gles3), VideoSettingsFragment.SupportsGLES3() ? yes : no));
+ Input.add(new AboutFragmentItem(getString(R.string.supports_neon), NativeLibrary.SupportsNEON() ? yes : no));
AboutFragmentAdapter adapter = new AboutFragmentAdapter(m_activity, R.layout.about_layout, Input);
mMainList.setAdapter(adapter);