mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:31:44 +00:00
34a9922b57
* Fix architecture preference for MacOS game shortcuts * Detect arch and then pass it to script Co-authored-by: jcm <john.moody@coloradocollege.edu> * Remove old script write call in `CreateShortcutMacos` * Turn launch script into EmbeddedResource * Added final newline --------- Co-authored-by: jcm <john.moody@coloradocollege.edu>
8 lines
148 B
Bash
8 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}
|