[Scummvm-git-logs] scummvm master -> 748dcdab65195b7a989fa39ef3aa335b36459f56

bluegr bluegr at gmail.com
Sun Oct 17 17:45:16 UTC 2021


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:
748dcdab65 SCI: Update a comment regarding demos without sound


Commit: 748dcdab65195b7a989fa39ef3aa335b36459f56
    https://github.com/scummvm/scummvm/commit/748dcdab65195b7a989fa39ef3aa335b36459f56
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2021-10-17T20:45:07+03:00

Commit Message:
SCI: Update a comment regarding demos without sound

Changed paths:
    engines/sci/sound/music.cpp


diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index 2c469f7a3e..80bf7d695a 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -151,9 +151,9 @@ void SciMusic::init() {
 	} else {
 		if (g_sci->getGameId() == GID_FUNSEEKER ||
 			(g_sci->getGameId() == GID_GK2 && g_sci->isDemo())) {
-			// HACK: The Fun Seeker's Guide demo doesn't have patch 3 and the version
-			// of the Adlib driver (adl.drv) that it includes is unsupported. That demo
-			// doesn't have any sound anyway, so this shouldn't be fatal.
+			// Disable checks for required audio drivers in certain demos
+			// which contain no sound - in this case, we can proceed
+			// without actually initializing the MIDI driver.
 		} else {
 			const char *missingFiles = _pMidiDrv->reportMissingFiles();
 			if (missingFiles) {




More information about the Scummvm-git-logs mailing list