Lemuroid
Lemuroid copied to clipboard
Ability to not render under the 'notch'?
As the title says - the only games I experience it in are DS games horizontally. Retroarch seems to have an equivilent option (that defaults to not displaying under a notch if present) if that helps. Thanks!
After poking around the source a bit, changing the line in lemuroid-app/src/main/res/values/material-themes.xml:
<item name="android:windowLayoutInDisplayCutoutMode" tools:targetApi="o_mr1">shortEdges</item>
to
<item name="android:windowLayoutInDisplayCutoutMode" tools:targetApi="o_mr1">never</item>
seems to achieve the desired behaviour! I'm not super familiar with android development, is there a way to tie that preference to a settings option?