Fix yuzu aspect ratio selection
This commit is contained in:
parent
03c40b91d4
commit
71b407260f
2 changed files with 7 additions and 2 deletions
|
@ -97,6 +97,10 @@ ln -sf /storage/roms/bios/yuzu/keys /storage/.config/yuzu/keys
|
|||
then
|
||||
sed -i '/^aspect_ratio=/c\aspect_ratio=3' /storage/.config/yuzu/qt-config.ini
|
||||
fi
|
||||
if [ "$ASPECT" = "4" ]
|
||||
then
|
||||
sed -i '/^aspect_ratio=/c\aspect_ratio=4' /storage/.config/yuzu/qt-config.ini
|
||||
fi
|
||||
|
||||
#GPU Accuracy
|
||||
sed -i '/^gpu_accuracy\\default=/c\gpu_accuracy\\default=false' /storage/.config/yuzu/qt-config.ini
|
||||
|
|
|
@ -356,8 +356,9 @@
|
|||
<feature name="aspect ratio">
|
||||
<choice name="16/9" value="0"/>
|
||||
<choice name="4/3" value="1"/>
|
||||
<choice name="21:9" value="2"/>
|
||||
<choice name="stretch" value="3"/>
|
||||
<choice name="21/9" value="2"/>
|
||||
<choice name="16/10" value="3"/>
|
||||
<choice name="stretch" value="4"/>
|
||||
</feature>
|
||||
<feature name="gpu accuracy">
|
||||
<choice name="low" value="0"/>
|
||||
|
|
Loading…
Reference in a new issue