[Scummvm-git-logs] scummvm master -> 3b778e45c081005134f9c8ed100195ca3910d804

lephilousophe noreply at scummvm.org
Tue Apr 14 10:20:44 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:
3b778e45c0 WAYNESWORLD: Fix build


Commit: 3b778e45c081005134f9c8ed100195ca3910d804
    https://github.com/scummvm/scummvm/commit/3b778e45c081005134f9c8ed100195ca3910d804
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2026-04-14T12:20:22+02:00

Commit Message:
WAYNESWORLD: Fix build

Changed paths:
    engines/waynesworld/sound.cpp


diff --git a/engines/waynesworld/sound.cpp b/engines/waynesworld/sound.cpp
index 7ba2e02c975..cf23aed3158 100644
--- a/engines/waynesworld/sound.cpp
+++ b/engines/waynesworld/sound.cpp
@@ -49,7 +49,7 @@ void SoundManager::playSound(const char *filename, bool flag) {
 
 	_filename = Common::String(filename);
 
-	if (strcmpi(filename + (_filename.size() - 3), "ABT") == 0) {
+	if (scumm_stricmp(filename + (_filename.size() - 3), "ABT") == 0) {
 		warning("ABT files not supported yet");
 		return;
 	}




More information about the Scummvm-git-logs mailing list