mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
8734ea9dd4
* Revert "ava: Fix regression caused by #4013 (#4222)"
This reverts commit b9f2a96595
.
* linux: Detect Ryujinx.Ava and don't rename the Ryujinx.Ava assembly
11 lines
218 B
Bash
11 lines
218 B
Bash
#!/bin/sh
|
|
|
|
SCRIPT_DIR=$(dirname $(realpath $0))
|
|
RYUJINX_BIN="Ryujinx"
|
|
|
|
if [ -f "$SCRIPT_DIR/Ryujinx.Ava" ]; then
|
|
RYUJINX_BIN="Ryujinx.Ava"
|
|
fi
|
|
|
|
env DOTNET_EnableAlternateStackCheck=1 "$SCRIPT_DIR/$RYUJINX_BIN" "$@"
|