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

dreammaster paulfgilbert at gmail.com
Tue Feb 18 05:56:38 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:
a3910a7810 ULTIMA8: Fix ShapeRenderedText constructor params


Commit: a3910a7810dbf60d6ec150b2ba123be3e2b33f4b
    https://github.com/scummvm/scummvm/commit/a3910a7810dbf60d6ec150b2ba123be3e2b33f4b
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-02-17T21:56:13-08:00

Commit Message:
ULTIMA8: Fix ShapeRenderedText constructor params

Changed paths:
    engines/ultima/ultima8/graphics/fonts/shape_rendered_text.cpp


diff --git a/engines/ultima/ultima8/graphics/fonts/shape_rendered_text.cpp b/engines/ultima/ultima8/graphics/fonts/shape_rendered_text.cpp
index 8fa80c6..d789319 100644
--- a/engines/ultima/ultima8/graphics/fonts/shape_rendered_text.cpp
+++ b/engines/ultima/ultima8/graphics/fonts/shape_rendered_text.cpp
@@ -32,11 +32,11 @@ namespace Ultima8 {
 DEFINE_RUNTIME_CLASSTYPE_CODE(ShapeRenderedText, RenderedText)
 
 
-ShapeRenderedText::ShapeRenderedText(Std::list<PositionedText> &_lines,
-                                     int width_, int height, int vLead,
-                                     ShapeFont *_font)
-	: _lines(_lines), _font(_font) {
-	_width = width_;
+ShapeRenderedText::ShapeRenderedText(Std::list<PositionedText> &lines,
+                                     int width, int height, int vLead,
+                                     ShapeFont *font)
+	: _lines(lines), _font(font) {
+	_width = width;
 	_height = height;
 	_vLead = vLead;
 }




More information about the Scummvm-git-logs mailing list