diff --git a/include/audio/miniaudio_device.hpp b/include/audio/miniaudio_device.hpp index 516c1602..0363aa44 100644 --- a/include/audio/miniaudio_device.hpp +++ b/include/audio/miniaudio_device.hpp @@ -36,4 +36,6 @@ class MiniAudioDevice { void start(); void stop(); + + bool isInitialized() const { return initialized; } }; \ No newline at end of file diff --git a/src/emulator.cpp b/src/emulator.cpp index 1bb117b5..86adbf22 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -428,6 +428,10 @@ RomFS::DumpingResult Emulator::dumpRomFS(const std::filesystem::path& path) { } 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) { audioDevice.stop(); } else if (enable && romType != ROMType::None && running) {