mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 16:51:43 +00:00
9 lines
148 B
Bash
9 lines
148 B
Bash
|
#!/bin/sh
|
||
|
launch_arch="$(uname -m)"
|
||
|
if [ "$(sysctl -in sysctl.proc_translated)" = "1" ]
|
||
|
then
|
||
|
launch_arch="arm64"
|
||
|
fi
|
||
|
|
||
|
arch -$launch_arch {0} {1}
|