[Scummvm-git-logs] scummvm master -> ad3c4fbacfa60cca46f8da62c266854259219e1e
whoozle
noreply at scummvm.org
Thu Feb 12 21:01:28 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:
ad3c4fbacf PHOENIXVR: fix font rendering
Commit: ad3c4fbacfa60cca46f8da62c266854259219e1e
https://github.com/scummvm/scummvm/commit/ad3c4fbacfa60cca46f8da62c266854259219e1e
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-02-12T21:01:22Z
Commit Message:
PHOENIXVR: fix font rendering
Changed paths:
engines/phoenixvr/phoenixvr.cpp
diff --git a/engines/phoenixvr/phoenixvr.cpp b/engines/phoenixvr/phoenixvr.cpp
index 93f34dbdc03..0ac047e53d2 100644
--- a/engines/phoenixvr/phoenixvr.cpp
+++ b/engines/phoenixvr/phoenixvr.cpp
@@ -522,7 +522,7 @@ void PhoenixVREngine::rollover(Common::Rect dstRect, int textId, int size, bool
auto numLines = static_cast<int>(lines.size());
auto textH = fontH * numLines;
debug("text %dx%d", textW, textH);
- _text.reset(new Graphics::ManagedSurface(textW, textH, _screen->format));
+ _text.reset(new Graphics::ManagedSurface(textW, textH, Graphics::BlendBlit::getSupportedPixelFormat()));
_text->clear();
byte r, g, b;
_rgb565.colorToRGB(color, r, g, b);
More information about the Scummvm-git-logs
mailing list