mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 10:30:18 +00:00
9 lines
273 B
Bash
9 lines
273 B
Bash
|
#!/usr/bin/env sh
|
||
|
# It is also recommended to run start.sh in the terminal, although this isn't required in order for it to operate
|
||
|
SCRIPT_DIR=$(dirname $0)
|
||
|
chmod +x "$SCRIPT_DIR/Ryujinx"
|
||
|
|
||
|
DOTNET_EnableAlternateStackCheck=1 GDK_BACKEND=x11 "$SCRIPT_DIR/Ryujinx" "$@"
|
||
|
|
||
|
exit
|