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

athrxx athrxx at scummvm.org
Sun May 24 00:14:26 UTC 2020


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

Summary:
eb501da161 KYRA: fix PC speaker driver (regression)


Commit: eb501da1619be8b3e322bb1afa8319b67ac90f98
    https://github.com/scummvm/scummvm/commit/eb501da1619be8b3e322bb1afa8319b67ac90f98
Author: athrxx (athrxx at scummvm.org)
Date: 2020-05-24T02:13:15+02:00

Commit Message:
KYRA: fix PC speaker driver (regression)

(seems that I accidently killed that in 46ef0109)

Changed paths:
    engines/kyra/sound/sound_pc_midi.cpp


diff --git a/engines/kyra/sound/sound_pc_midi.cpp b/engines/kyra/sound/sound_pc_midi.cpp
index d15315b1f1..b1a681dba7 100644
--- a/engines/kyra/sound/sound_pc_midi.cpp
+++ b/engines/kyra/sound/sound_pc_midi.cpp
@@ -403,7 +403,7 @@ Common::String SoundMidiPC::getFileName(const Common::String &str) {
 	else if (_type == kMidiGM)
 		file += ".C55";
 	else if (_type == kPCSpkr)
-		file += ".SND";//".PCS";
+		file += ".PCS";
 
 	if (_vm->resource()->exists(file.c_str()))
 		return file;




More information about the Scummvm-git-logs mailing list