mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Handle lack of an audio device gracefully without hangs
This commit is contained in:
parent
63cbfbb523
commit
873fca076a
2 changed files with 6 additions and 0 deletions
|
@ -36,4 +36,6 @@ class MiniAudioDevice {
|
||||||
|
|
||||||
void start();
|
void start();
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
|
bool isInitialized() const { return initialized; }
|
||||||
};
|
};
|
|
@ -428,6 +428,10 @@ RomFS::DumpingResult Emulator::dumpRomFS(const std::filesystem::path& path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Emulator::setAudioEnabled(bool enable) {
|
void Emulator::setAudioEnabled(bool enable) {
|
||||||
|
// Don't enable audio if we didn't manage to find an audio device and initialize it properly, otherwise audio sync will break,
|
||||||
|
// because the emulator will expect the audio device to drain the sample buffer, but there's no audio device running...
|
||||||
|
enable = enable && audioDevice.isInitialized();
|
||||||
|
|
||||||
if (!enable) {
|
if (!enable) {
|
||||||
audioDevice.stop();
|
audioDevice.stop();
|
||||||
} else if (enable && romType != ROMType::None && running) {
|
} else if (enable && romType != ROMType::None && running) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue