A Fork of Emulation Station for RetroPie. Emulation Station is a flexible emulator front-end supporting keyboardless navigation and custom system themes.
Other
863
stars
344
forks
source link
ScreenSaver audio dont stop when starting game during screensaver #812
On my linux board The audio dont stop when the game is launched during screensaver, this cause the audio dont work in the game itself.
I've fixed the problem closing screensaver before launch the game in file EmulationStation-master\es-app\src\SystemScreenSaver.cpp
On my linux board The audio dont stop when the game is launched during screensaver, this cause the audio dont work in the game itself. I've fixed the problem closing screensaver before launch the game in file EmulationStation-master\es-app\src\SystemScreenSaver.cpp
void SystemScreenSaver::launchGame() { if (mCurrentGame != NULL) { //Stop screensaver mStopBackgroundAudio = true; stopScreenSaver();
}