[Scummvm-git-logs] scummvm master -> 05e711659d6ba2037fd4f9af88eeccc50fa726fc
aquadran
noreply at scummvm.org
Mon Sep 15 14:45:17 UTC 2025
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:
05e711659d WINTERMUTE: Cleanup
Commit: 05e711659d6ba2037fd4f9af88eeccc50fa726fc
https://github.com/scummvm/scummvm/commit/05e711659d6ba2037fd4f9af88eeccc50fa726fc
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2025-09-15T16:45:11+02:00
Commit Message:
WINTERMUTE: Cleanup
Changed paths:
engines/wintermute/base/base_game.cpp
engines/wintermute/utils/string_util.cpp
diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp
index eab96efe44f..4fe034d4017 100644
--- a/engines/wintermute/base/base_game.cpp
+++ b/engines/wintermute/base/base_game.cpp
@@ -246,7 +246,6 @@ BaseGame::BaseGame(const Common::String &targetName) : BaseObject(this), _target
_musicCrossfadeChannel1 = -1;
_musicCrossfadeChannel2 = -1;
_musicCrossfadeSwap = false;
- // FoxTail:
_musicCrossfadeVolume1 = 0;
_musicCrossfadeVolume2 = 100;
diff --git a/engines/wintermute/utils/string_util.cpp b/engines/wintermute/utils/string_util.cpp
index 0b4ad7d1962..91a461bf57d 100644
--- a/engines/wintermute/utils/string_util.cpp
+++ b/engines/wintermute/utils/string_util.cpp
@@ -43,8 +43,8 @@ bool StringUtil::compareNoCase(const AnsiString &str1, const AnsiString &str2) {
WideString str1lc = str1;
WideString str2lc = str2;
- ToLowerCase(str1lc);
- ToLowerCase(str2lc);
+ toLowerCase(str1lc);
+ toLowerCase(str2lc);
return (str1lc == str2lc);
}*/
More information about the Scummvm-git-logs
mailing list