From 7992e39b0f9ec386a7a6f4ad52103fbdfb1c8428 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 31 Dec 2020 17:56:53 +0100 Subject: [PATCH] Slight change of the description for the setting for audio for gamelist videos. --- USERGUIDE.md | 2 +- es-app/src/guis/GuiMenu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/USERGUIDE.md b/USERGUIDE.md index e87bad451..58ce68c40 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -889,7 +889,7 @@ Sets the volume for the navigation sounds. Sets the volume for the video player. This applies to both the gamelist views and the video screensaver. -**Play audio for video files in gamelist views** +**Play audio for videos in the gamelist view** With this turned off, audio won't play for game videos in the gamelists. diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index fb968f381..3da2ef038 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -573,7 +573,7 @@ void GuiMenu::openSoundSettings() // Video audio. auto gamelist_video_audio = std::make_shared(mWindow); gamelist_video_audio->setState(Settings::getInstance()->getBool("GamelistVideoAudio")); - s->addWithLabel("PLAY AUDIO FOR VIDEO FILES IN GAMELIST VIEWS", gamelist_video_audio); + s->addWithLabel("PLAY AUDIO FOR VIDEOS IN THE GAMELIST VIEW", gamelist_video_audio); s->addSaveFunc([gamelist_video_audio, s] { if (gamelist_video_audio->getState() != Settings::getInstance()->getBool("GamelistVideoAudio")) {