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

aquadran aquadran at gmail.com
Fri Oct 16 21:27:27 UTC 2020


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:
eef527e227 STARK: Not dot use ellipsis in text for game.


Commit: eef527e22706a12be42eaeb1d17112753879de59
    https://github.com/scummvm/scummvm/commit/eef527e22706a12be42eaeb1d17112753879de59
Author: Paweł Kołodziejski (aquadran at users.sourceforge.net)
Date: 2020-10-16T23:27:18+02:00

Commit Message:
STARK: Not dot use ellipsis in text for game.

Changed paths:
    engines/stark/visual/text.cpp


diff --git a/engines/stark/visual/text.cpp b/engines/stark/visual/text.cpp
index 17c1aebadf..6a69c2f717 100644
--- a/engines/stark/visual/text.cpp
+++ b/engines/stark/visual/text.cpp
@@ -285,7 +285,7 @@ void VisualText::createTexture() {
 
 	// Render the lines to the surface
 	for (uint i = 0; i < lines.size(); i++) {
-		font->drawString(&surface, lines[i], 0, scaledLineHeight * i, surface.w, white, _align);
+		font->drawString(&surface, lines[i], 0, scaledLineHeight * i, surface.w, white, _align, 0, false);
 	}
 
 	// Blend the text color with the alpha mask to produce an image of the text




More information about the Scummvm-git-logs mailing list