Bump Yuzu & Fix/Add features
This commit is contained in:
parent
607c422776
commit
31153ba775
5 changed files with 32 additions and 6 deletions
|
@ -10,7 +10,7 @@ case ${DEVICE} in
|
|||
handheld)
|
||||
PKG_SITE="https://github.com/dolphin-emu/dolphin"
|
||||
PKG_URL="${PKG_SITE}.git"
|
||||
PKG_VERSION="f6fbeaf3554b3af06d9e1584189bcf2274838063"
|
||||
PKG_VERSION="e4c007e2e1a442dbab620f91ca5f6b9b2b27dd5b"
|
||||
PKG_PATCH_DIRS+=" wayland"
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -10,7 +10,7 @@ PKG_SHORTDESC="Fast PlayStation 1 emulator for x86-64/AArch32/AArch64 "
|
|||
|
||||
case ${DEVICE} in
|
||||
handheld)
|
||||
PKG_VERSION="928dd0e6656ef76ea54b380ec356f872e5e92c42"
|
||||
PKG_VERSION="06d6447e59f208f21ba42f4df1665b789db13fb7"
|
||||
PKG_PATCH_DIRS+=" new"
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
|
||||
|
||||
PKG_NAME="yuzusa"
|
||||
PKG_VERSION="88f5d38b9349afefd9257a779323531b21001500"
|
||||
PKG_VERSION="bbeb6e460cf1fd8f796978980e745410bc77ce08"
|
||||
PKG_ARCH="x86_64"
|
||||
PKG_LICENSE="GPLv3"
|
||||
PKG_SITE="https://github.com/yuzu-emu/yuzu"
|
||||
|
|
|
@ -35,6 +35,7 @@ ln -sf /storage/roms/bios/yuzu /storage/.config/yuzu/keys
|
|||
AF=$(get_setting anisotropic_filtering switch "${GAME}")
|
||||
AA=$(get_setting anti_aliasing switch "${GAME}")
|
||||
ASPECT=$(get_setting aspect_ratio switch "${GAME}")
|
||||
GACCURACY=$(get_setting gpu_accuracy switch "${GAME}")
|
||||
GRENDERER=$(get_setting graphics_backend switch "${GAME}")
|
||||
IRES=$(get_setting internal_resolution switch "${GAME}")
|
||||
PFILTER=$(get_setting pixel_filter switch "${GAME}")
|
||||
|
@ -78,19 +79,39 @@ ln -sf /storage/roms/bios/yuzu /storage/.config/yuzu/keys
|
|||
then
|
||||
sed -i '/aspect_ratio =/c\aspect_ratio = 0' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
|
||||
if [ "$ASPECT" = "1" ]
|
||||
then
|
||||
sed -i '/aspect_ratio =/c\aspect_ratio = 1' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
if [ "$ASPECT" = "2" ]
|
||||
|
||||
if [ "$ASPECT" = "2" ]
|
||||
then
|
||||
sed -i '/aspect_ratio =/c\aspect_ratio = 2' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
if [ "$ASPECT" = "3" ]
|
||||
|
||||
if [ "$ASPECT" = "3" ]
|
||||
then
|
||||
sed -i '/aspect_ratio =/c\aspect_ratio = 3' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
|
||||
#GPU Accuracy
|
||||
if [ "$GACCURACY" = "0" ]
|
||||
then
|
||||
sed -i '/gpu_accuracy =/c\gpu_accuracy = 0' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
|
||||
if [ "$GACCURACY" = "1" ]
|
||||
then
|
||||
sed -i '/gpu_accuracy =/c\gpu_accuracy = 1' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
|
||||
if [ "$GACCURACY" = "2" ]
|
||||
then
|
||||
sed -i '/gpu_accuracy =/c\gpu_accuracy = 2' /storage/.config/yuzu/sdl2-config.ini
|
||||
fi
|
||||
|
||||
|
||||
#Graphics Backend
|
||||
if [ "$GRENDERER" = "0" ]
|
||||
then
|
||||
|
|
|
@ -173,6 +173,11 @@
|
|||
<choice name="21:9" value="2"/>
|
||||
<choice name="stretch" value="3"/>
|
||||
</feature>
|
||||
<feature name="gpu accuracy">
|
||||
<choice name="low" value="0"/>
|
||||
<choice name="medium" value="1"/>
|
||||
<choice name="high" value="2"/>
|
||||
</feature>
|
||||
<feature name="graphics backend">
|
||||
<choice name="opengl" value="0"/>
|
||||
<choice name="vulkan" value="1"/>
|
||||
|
@ -194,7 +199,7 @@
|
|||
<choice name="handheld" value="0"/>
|
||||
<choice name="docked" value="1"/>
|
||||
</feature>
|
||||
<feature name="vysnc">
|
||||
<feature name="vsync">
|
||||
<choice name="off" value="0"/>
|
||||
<choice name="on" value="1"/>
|
||||
</feature>
|
||||
|
|
Loading…
Reference in a new issue