[Scummvm-git-logs] scummvm master -> a0b2f4161be8d9386762643cad5135ecd7713237
sev-
noreply at scummvm.org
Fri Aug 22 20:17:01 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
df3192d70e CREDIRS: Regenerate
a0b2f4161b GRAPHICS: MACGUI: Set _scrollbar variable
Commit: df3192d70effb0110d58c54a61a6820762467d1d
https://github.com/scummvm/scummvm/commit/df3192d70effb0110d58c54a61a6820762467d1d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-08-22T15:51:48+02:00
Commit Message:
CREDIRS: Regenerate
Changed paths:
AUTHORS
doc/docportal/help/credits.rst
gui/credits.h
diff --git a/AUTHORS b/AUTHORS
index 17e41749a87..d81c46c9c49 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -613,6 +613,7 @@ ScummVM Team
Paul Gilbert
WAGE:
+ Alikhan Balpykov
Eugene Sandulenko
Watchmaker:
@@ -629,6 +630,8 @@ ScummVM Team
Adrian Astley
Filippos Karapetis
Anton Yarcev
+ Thomas N McEwan - Widescreen mod, HQ panoramas, 3D
+ audio enhancement
Backend Teams
-------------
diff --git a/doc/docportal/help/credits.rst b/doc/docportal/help/credits.rst
index cabd6c8f2d1..8df64b6b30c 100644
--- a/doc/docportal/help/credits.rst
+++ b/doc/docportal/help/credits.rst
@@ -1553,6 +1553,8 @@ WAGE
.. list-table::
:widths: 35 65
+ * - Alikhan Balpykov
+ -
* - Eugene Sandulenko
-
@@ -1594,6 +1596,8 @@ Z-Vision
-
* - Anton Yarcev
-
+ * - Thomas N McEwan
+ - Widescreen mod, HQ panoramas, 3D audio enhancement
Backend Teams
*************
diff --git a/gui/credits.h b/gui/credits.h
index b68d803c2d2..ad15a91b7cd 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -752,6 +752,7 @@ static const char *const credits[] = {
"C0""Paul Gilbert",
"",
"C1""WAGE",
+"C0""Alikhan Balpykov",
"C0""Eugene Sandulenko",
"",
"C1""Watchmaker",
@@ -770,6 +771,8 @@ static const char *const credits[] = {
"C0""Adrian Astley",
"C0""Filippos Karapetis",
"C0""Anton Yarcev",
+"C0""Thomas N McEwan",
+"C2""Widescreen mod, HQ panoramas, 3D audio enhancement",
"",
"",
"C1""Backend Teams",
Commit: a0b2f4161be8d9386762643cad5135ecd7713237
https://github.com/scummvm/scummvm/commit/a0b2f4161be8d9386762643cad5135ecd7713237
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-08-22T22:16:24+02:00
Commit Message:
GRAPHICS: MACGUI: Set _scrollbar variable
Changed paths:
graphics/macgui/mactext.cpp
diff --git a/graphics/macgui/mactext.cpp b/graphics/macgui/mactext.cpp
index 321b262b88b..a3929059acc 100644
--- a/graphics/macgui/mactext.cpp
+++ b/graphics/macgui/mactext.cpp
@@ -117,7 +117,7 @@ uint MacTextLine::getChunkNum(int *col) {
MacText::MacText(MacWidget *parent, int x, int y, int w, int h, MacWindowManager *wm, const Common::U32String &s, const MacFont *macFont, uint32 fgcolor, uint32 bgcolor, int maxWidth, TextAlign textAlignment, int interlinear, uint16 border, uint16 gutter, uint16 boxShadow, uint16 textShadow, bool fixedDims, bool scrollBar) :
MacWidget(parent, x, y, w, h, wm, true, border, gutter, boxShadow),
- _macFont(macFont) {
+ _macFont(macFont), _scrollBar(scrollBar) {
D(6, "MacText::MacText(): fgcolor: %d, bgcolor: %d s: \"%s\"", fgcolor, bgcolor, Common::toPrintable(s.encode()).c_str());
@@ -150,7 +150,7 @@ MacText::MacText(MacWidget *parent, int x, int y, int w, int h, MacWindowManager
// NOTE: This constructor and the one afterward are for MacText engines that don't use widgets. This is the classic was MacText was constructed.
MacText::MacText(const Common::U32String &s, MacWindowManager *wm, const MacFont *macFont, uint32 fgcolor, uint32 bgcolor, int maxWidth, TextAlign textAlignment, int interlinear, bool fixedDims, bool scrollBar) :
MacWidget(nullptr, 0, 0, 0, 0, wm, false, 0, 0, 0),
- _macFont(macFont) {
+ _macFont(macFont), _scrollBar(scrollBar) {
_str = s;
@@ -176,7 +176,7 @@ MacText::MacText(const Common::U32String &s, MacWindowManager *wm, const MacFont
// Working with plain Font
MacText::MacText(const Common::U32String &s, MacWindowManager *wm, const Font *font, uint32 fgcolor, uint32 bgcolor, int maxWidth, TextAlign textAlignment, int interlinear, bool fixedDims, bool scrollBar) :
MacWidget(nullptr, 0, 0, 0, 0, wm, false, 0, 0, 0),
- _macFont(nullptr) {
+ _macFont(nullptr), _scrollBar(scrollBar) {
_str = s;
More information about the Scummvm-git-logs
mailing list