mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
Yuzu folder was empty, restored from cooker
This commit is contained in:
parent
0369dc48f9
commit
09d96bf30a
|
@ -1 +0,0 @@
|
|||
Subproject commit c23956479d76c12b559316cfd30755eef5e09902
|
1
rd-submodules/yuzu/compatibility_list.json
Normal file
1
rd-submodules/yuzu/compatibility_list.json
Normal file
File diff suppressed because one or more lines are too long
24
rd-submodules/yuzu/yuzu-launcher.sh
Executable file
24
rd-submodules/yuzu/yuzu-launcher.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
report_error() {
|
||||
read -r -d '|' MESSAGE <<EOF
|
||||
Unfortunately, yuzu seems to have crashed.
|
||||
We kindly ask you to submit a bug report to <a href="https://github.com/flathub/org.yuzu_emu.yuzu/issues">https://github.com/flathub/org.yuzu_emu.yuzu/issues</a>.
|
||||
|
||||
When submitting a bug report, please attach your <b>system information</b> and the <b>yuzu log file</b>.
|
||||
You seem to be using ${XDG_SESSION_DESKTOP} ${DESKTOP_SESSION} (${XDG_SESSION_TYPE}):
|
||||
To obtain yuzu log files, please see <a href="https://yuzu-emu.org/help/reference/log-files/">this guide</a>.
|
||||
To obtain your system information, please install <tt>inxi</tt> and run <tt>inxi -v3</tt>. |
|
||||
EOF
|
||||
zenity --warning --no-wrap --title "That's awkward ..." --text "$MESSAGE"
|
||||
}
|
||||
|
||||
# Discord RPC
|
||||
for i in {0..9}; do
|
||||
test -S $XDG_RUNTIME_DIR/discord-ipc-$i || ln -sf {app/com.discordapp.Discord,$XDG_RUNTIME_DIR}/discord-ipc-$i;
|
||||
done
|
||||
|
||||
|
||||
if ! prlimit --nofile=8192 yuzu "$@"; then
|
||||
report_error
|
||||
fi
|
Loading…
Reference in a new issue