Linux: Add Avalonia detection to Ryujinx.sh (#4224)
* Revert "ava: Fix regression caused by #4013 (#4222)"
This reverts commit b9f2a96595
.
* linux: Detect Ryujinx.Ava and don't rename the Ryujinx.Ava assembly
This commit is contained in:
parent
c586e6d2b7
commit
8734ea9dd4
3 changed files with 7 additions and 10 deletions
|
@ -1,5 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
SCRIPT_DIR=$(dirname $(realpath $0))
|
||||
RYUJINX_BIN="Ryujinx"
|
||||
|
||||
env DOTNET_EnableAlternateStackCheck=1 "$SCRIPT_DIR/Ryujinx" "$@"
|
||||
if [ -f "$SCRIPT_DIR/Ryujinx.Ava" ]; then
|
||||
RYUJINX_BIN="Ryujinx.Ava"
|
||||
fi
|
||||
|
||||
env DOTNET_EnableAlternateStackCheck=1 "$SCRIPT_DIR/$RYUJINX_BIN" "$@"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue