Merge pull request #982 from fewtarius/dev

Add a default to system/core/game GPU performance settings.
This commit is contained in:
fewtarius 2023-01-23 07:28:12 -05:00 committed by GitHub
commit 031a1df27c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -127,8 +127,11 @@ GPUPERF=$(get_setting "gpuperf" "${PLATFORM}" "${ROMNAME##*/}")
if [ ! "${GPUPERF}" = "system" ] && \
[ ! -z "${GPUPERF}" ]
then
echo "${GPUPERF}" >/tmp/.gpuperf
systemctl restart powerstate
if [ ! "${GPUPERF}" = "default" ]
then
echo "${GPUPERF}" >/tmp/.gpuperf
systemctl restart powerstate
fi
fi
if [ "${DEVICE_HAS_FAN}" = "true" ]

View file

@ -3,7 +3,7 @@
# Copyright (C) 2020-present Fewtarius
PKG_NAME="emulationstation"
PKG_VERSION="a1d795e"
PKG_VERSION="c4463b7"
PKG_GIT_CLONE_BRANCH="main"
PKG_REV="1"
PKG_ARCH="any"