Don't filter out warnings

This commit is contained in:
Isuldor
2026-06-27 15:27:27 -07:00
parent 68f7125046
commit fd86aca6a9
2 changed files with 1 additions and 15 deletions
-9
View File
@@ -128,15 +128,6 @@ EOF
cd "$(dirname "$launcher_exe")"
if [ "''${EQL_FILTER_EGL_WARNINGS:-1}" = "1" ]; then
exec wine "$launcher_exe" "$@" 2> >(
sed \
-e '/^libEGL warning: /d' \
-e '/^pci id for fd [0-9][0-9]*: /d' \
-e '/^$/d' >&2
)
fi
exec wine "$launcher_exe" "$@"
'';