controllerLayout_ABXY

This commit is contained in:
Dragoon Dorise 2024-03-05 19:57:15 +01:00
parent edee1a8daa
commit d8b3fb25ab
5 changed files with 31 additions and 0 deletions

View file

@ -29,6 +29,10 @@ Cemu_functions () {
echo "NYI"
}
setBAYXstyle () {
echo "NYI"
}
# Migrate
migrate () {
echo "Begin Cemu migration"

View file

@ -143,6 +143,10 @@ Dolphin_setABXYstyle(){
echo "NYI"
}
Dolphin_setBAYXstyle(){
echo "NYI"
}
#Migrate
Dolphin_migrate(){
echo "NYI"

View file

@ -208,6 +208,9 @@ Ryujinx_convertFromYuzu(){
Ryujinx_setABXYstyle(){
echo "NYI"
}
Ryujinx_setBAXYstyle(){
echo "NYI"
}
#WideScreenOn
Ryujinx_wideScreenOn(){

View file

@ -993,6 +993,7 @@ function jsonToBashVars(){
setSetting RAHandClassic2D "$(jq .shaders.classic $json)"
setSetting RAHandClassic3D "$(jq .shaders.classic3d $json)"
setSetting RAHandHeldShader "$(jq .shaders.handhelds $json)"
setSetting controllerLayout "$(jq .controllerLayout $json)"
#CloudSync
setSetting cloud_sync_provider "$(jq .cloudSync $json)"
@ -1048,4 +1049,17 @@ function jsonToBashVars(){
setSetting androidStorage "$(jq .android.storage $json)"
setSetting androidStoragePath "$(jq .android.storagePath $json)"
}
function controllerLayout_ABXY(){
Dolphin_setABXYstyle
Cemu_setABXYstyle
Ryujinx_setABXYstyle
}
function controllerLayout_BAYX(){
Dolphin_setBAYXstyle
Cemu_setBAYXstyle
Ryujinx_setBAXYstyle
}

View file

@ -463,6 +463,12 @@ fi
createDesktopIcons
if [ "$controllerLayout" == ""]; then
controllerLayout_ABXY
else
controllerLayout_BAYX
fi
#
##
##Plugins