[Scummvm-git-logs] scummvm master -> 58df3d186226603547e9c11f6aa756c1119dc422
aquadran
noreply at scummvm.org
Sun Aug 2 11:16:41 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:
58df3d1862 WINTERMUTE: Simplify W/A for fonts fallback
Commit: 58df3d186226603547e9c11f6aa756c1119dc422
https://github.com/scummvm/scummvm/commit/58df3d186226603547e9c11f6aa756c1119dc422
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2026-08-02T13:16:28+02:00
Commit Message:
WINTERMUTE: Simplify W/A for fonts fallback
Changed paths:
engines/wintermute/base/font/base_font_truetype.cpp
diff --git a/engines/wintermute/base/font/base_font_truetype.cpp b/engines/wintermute/base/font/base_font_truetype.cpp
index efab14bf1b2..3e4353f6b3d 100644
--- a/engines/wintermute/base/font/base_font_truetype.cpp
+++ b/engines/wintermute/base/font/base_font_truetype.cpp
@@ -587,9 +587,7 @@ bool BaseFontTT::initFont() {
// The game 'Nose Bound Episode 1' is points to 'fonts\Andes.ttf',
// however there is in game root data directory.
file = BaseFileManager::getEngineInstance()->openFile("bettynoir.ttf", true, false);
- } else if (BaseEngine::instance().getGameId() == "todaymama" &&
- (Common::String(_fontFile).contains("PRN55__C.TTF") ||
- Common::String(_fontFile).contains("BREEZE.TTF"))) {
+ } else if (BaseEngine::instance().getGameId() == "todaymama") {
// Fonts from the game 'Today, Mama!' are not working. Using fallback.
file = nullptr;
} else {
More information about the Scummvm-git-logs
mailing list