Merge pull request #772 from fewtarius/dev
Fix Core wired controller (Switch gamecube style), additional fixes for PCSX2 stand alone.
This commit is contained in:
commit
dc8397a872
4 changed files with 16 additions and 3 deletions
|
@ -432,3 +432,6 @@ Type = None
|
|||
|
||||
[Pad8]
|
||||
Type = None
|
||||
|
||||
[AutoUpdater]
|
||||
CheckAtStartup = false
|
||||
|
|
|
@ -10,5 +10,5 @@ if [ ! -d "/storage/.config/PCSX2" ]
|
|||
then
|
||||
cp -rf /usr/config/PCSX2 /storage/.config
|
||||
fi
|
||||
${FAST_CORES} @APPIMAGE@ -- "$ARG"
|
||||
${FAST_CORES} @APPIMAGE@ -fastboot -- "$ARG"
|
||||
set_audio alsa
|
||||
|
|
|
@ -127,3 +127,13 @@ then
|
|||
echo "Fix asound.state." >>${LOG}
|
||||
cp /usr/config/asound.state /storage/.config/asound.state
|
||||
fi
|
||||
|
||||
# Disable PCSX2SA auto update check
|
||||
if [ -e "/storage/.config/PCSX2/inis/PCSX2.ini" ] && \
|
||||
[ ! "$(grep -i AutoUpdater /storage/.config/PCSX2/inis/PCSX2.ini)" ]
|
||||
then
|
||||
cat <<EOF >>/storage/.config/PCSX2/inis/PCSX2.ini
|
||||
[AutoUpdater]
|
||||
CheckAtStartup = false
|
||||
EOF
|
||||
fi
|
||||
|
|
|
@ -1018,11 +1018,11 @@
|
|||
<input name="x" type="button" id="2" value="1" />
|
||||
<input name="y" type="button" id="3" value="1" />
|
||||
</inputConfig>
|
||||
<inputConfig type="joystick" deviceName="Core (Plus) Wired Controller" deviceGUID="03000000d620000011a7000012016800">
|
||||
<inputConfig type="joystick" deviceName="Core (Plus) Wired Controller" deviceGUID="03006230d620000011a7000012016800">
|
||||
<input name="a" type="button" id="0" value="1" />
|
||||
<input name="b" type="button" id="1" value="1" />
|
||||
<input name="down" type="button" id="12" value="1" />
|
||||
<input name="hotkeyenable" type="button" id="5" value="1" />
|
||||
<input name="hotkeyenable" type="button" id="4" value="1" />
|
||||
<input name="left" type="button" id="13" value="1" />
|
||||
<input name="leftanalogdown" type="axis" id="1" value="1" />
|
||||
<input name="leftanalogleft" type="axis" id="0" value="-1" />
|
||||
|
|
Loading…
Reference in a new issue