Android: Set preferMinimalPostProcessing="true"

When using the combination of Android 11 and HDMI 2.1,
this will send a signal to the TV suggesting it to switch to
a low latency mode ("game mode").
This commit is contained in:
JosJuice 2020-07-28 22:21:57 +02:00
parent bf49849f88
commit 9c44ad11e3
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
compileSdkVersion 30
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8

View File

@ -73,7 +73,8 @@
<activity
android:name=".activities.EmulationActivity"
android:theme="@style/DolphinEmulationBase"/>
android:theme="@style/DolphinEmulationBase"
android:preferMinimalPostProcessing="true"/>
<activity
android:name=".activities.CustomFilePickerActivity"