[Scummvm-git-logs] scummvm master -> d80fef3b8ff81707492db3774d56ea21d5e975a2

dreammaster noreply at scummvm.org
Mon Jul 27 01:09:32 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
d80fef3b8f MADS: NEBULAR: Fix reading PC Speaker selection from the launcher GUI


Commit: d80fef3b8ff81707492db3774d56ea21d5e975a2
    https://github.com/scummvm/scummvm/commit/d80fef3b8ff81707492db3774d56ea21d5e975a2
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-07-27T11:09:23+10:00

Commit Message:
MADS: NEBULAR: Fix reading PC Speaker selection from the launcher GUI

Changed paths:
    engines/mads/core/sound_manager.cpp


diff --git a/engines/mads/core/sound_manager.cpp b/engines/mads/core/sound_manager.cpp
index 52ca2789228..a819f7dcccc 100644
--- a/engines/mads/core/sound_manager.cpp
+++ b/engines/mads/core/sound_manager.cpp
@@ -32,7 +32,7 @@ class Mixer;
 namespace MADS {
 
 SoundManager::SoundManager(Audio::Mixer *mixer, bool &soundFlag) : _mixer(mixer), _soundFlag(soundFlag) {
-	MidiDriver::DeviceHandle dev = MidiDriver::detectDevice(MDT_ADLIB | MDT_MIDI | MDT_PREFER_MT32);
+	MidiDriver::DeviceHandle dev = MidiDriver::detectDevice(MDT_PCSPK | MDT_ADLIB | MDT_MIDI | MDT_PREFER_MT32);
 	MusicType musicType = MidiDriver::getMusicType(dev);
 	switch (musicType) {
 	case MT_MT32:




More information about the Scummvm-git-logs mailing list