summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2013-04-19 09:44:19 -0500
committerRyan Houdek <Sonicadvance1@gmail.com>2013-04-19 09:44:38 -0500
commitb47915d1e437fcb87b86712afb22c5570bca2b4e (patch)
tree1baf35512c24a811808c85a6372549a61d01ad0e /Source/Android
parentd244bca1f5f210e03839d0e0a485fc5511ede2d6 (diff)
Enforce landscape view since rotations cause huge issues atm.
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Android/AndroidManifest.xml b/Source/Android/AndroidManifest.xml
index 81621281fc..624f7b2df9 100644
--- a/Source/Android/AndroidManifest.xml
+++ b/Source/Android/AndroidManifest.xml
@@ -18,7 +18,8 @@
android:name=".DolphinEmulator"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
- android:configChanges="orientation|locale|keyboard|keyboardHidden|navigation|fontScale|uiMode" >
+ android:screenOrientation="landscape"
+ android:configChanges="locale|keyboard|keyboardHidden|navigation|fontScale|uiMode" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />