Yuzu fixes

This commit is contained in:
XargonWan 2022-11-14 10:45:40 +00:00
parent 0ef4833cb9
commit 001fbe241b
3 changed files with 1 additions and 27 deletions

View file

@ -453,8 +453,7 @@ modules:
# PPSSPP - END
# Yuzu - START
# https://github.com/flathub/org.yuzu_emu.yuzu
# WHEN UPADTING: remember to update rd-submodules/yuzu contents
# https://github.com/yuzu-emu/yuzu-mainline/releases
- name: Yuzu
buildsystem: simple

File diff suppressed because one or more lines are too long

View file

@ -1,24 +0,0 @@
#!/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