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

aquadran noreply at scummvm.org
Sat Oct 26 21:37:45 UTC 2024


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:
a7a64d6368 WINTERMUTE: Restored original functionality. Fixed matching names case-insensitive way


Commit: a7a64d636880b3ee5465a6b813926c0c4401f21e
    https://github.com/scummvm/scummvm/commit/a7a64d636880b3ee5465a6b813926c0c4401f21e
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2024-10-26T23:37:40+02:00

Commit Message:
WINTERMUTE: Restored original functionality. Fixed matching names case-insensitive way

Changed paths:
    engines/wintermute/ad/ad_geom_ext_node.cpp


diff --git a/engines/wintermute/ad/ad_geom_ext_node.cpp b/engines/wintermute/ad/ad_geom_ext_node.cpp
index 8e53cc1e8ef..f5dab5abbe3 100644
--- a/engines/wintermute/ad/ad_geom_ext_node.cpp
+++ b/engines/wintermute/ad/ad_geom_ext_node.cpp
@@ -140,7 +140,7 @@ bool AdGeomExtNode::setupNode(const char *namePattern, TGeomNodeType type, bool
 
 //////////////////////////////////////////////////////////////////////////
 bool AdGeomExtNode::matchesName(const char *name) {
-	return Common::matchString(name, _namePattern);
+	return Common::matchString(name, _namePattern, true);
 }
 
 } // namespace Wintermute




More information about the Scummvm-git-logs mailing list