[Scummvm-git-logs] scummvm master -> 241aa55809c3957de183c567e7e0bb881443762b

sev- noreply at scummvm.org
Wed Mar 18 16:25:29 UTC 2026


This automated email contains information about 4 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
7ea33bd051 BAGEL: Fix warnings
b6cde46942 NEWS: Mention SLLUDE improvement
3c1eaa1104 JANTIORIAL: Remove trailing spacex
241aa55809 NEWS: Mention GUI Help improvements


Commit: 7ea33bd05157cc35950b601136c09664f9406977
    https://github.com/scummvm/scummvm/commit/7ea33bd05157cc35950b601136c09664f9406977
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-03-18T16:41:49+01:00

Commit Message:
BAGEL: Fix warnings

Changed paths:
    engines/bagel/hodjnpodj/dfa/optdlg.cpp


diff --git a/engines/bagel/hodjnpodj/dfa/optdlg.cpp b/engines/bagel/hodjnpodj/dfa/optdlg.cpp
index 54fdbb48582..d8188d19908 100644
--- a/engines/bagel/hodjnpodj/dfa/optdlg.cpp
+++ b/engines/bagel/hodjnpodj/dfa/optdlg.cpp
@@ -29,11 +29,11 @@ namespace DFA {
 
 constexpr int GAMETIMEMAX         = 5;
 constexpr int GAMETIMEMIN         = 1;
-constexpr int GAMESTEP            = 1;
+//constexpr int GAMESTEP            = 1;
 
 constexpr int BEAVERTIMEMAX       = 4;
 constexpr int BEAVERTIMEMIN       = 1;
-constexpr int BEAVERSTEP = 1;
+//constexpr int BEAVERSTEP = 1;
 
 static CPalette     *pPackRatOptPalette;
 CText               *ptxtGTime;


Commit: b6cde469425c0fb3dc546c0df13f983c957ba664
    https://github.com/scummvm/scummvm/commit/b6cde469425c0fb3dc546c0df13f983c957ba664
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-03-18T16:41:49+01:00

Commit Message:
NEWS: Mention SLLUDE improvement

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index 6bb9b03fe68..d9b42d24399 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -77,6 +77,9 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Fixed crash when using keyboard keys while playing darts in Rose Tattoo.
    - Fixed score board layout and logic for dart games in Rose Tattoo.
 
+ SLUDGE:
+   - Fixed crash at start of Nathan's Second Chance game.
+
  Teenagent:
    - Fixed 'could not locate language block' error when starting the Polish and
      Russian versions.


Commit: 3c1eaa1104de92043fc73a696b86b3b7bc063dfd
    https://github.com/scummvm/scummvm/commit/3c1eaa1104de92043fc73a696b86b3b7bc063dfd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-03-18T16:48:29+01:00

Commit Message:
JANTIORIAL: Remove trailing spacex

Changed paths:
    gui/widgets/richtext.cpp


diff --git a/gui/widgets/richtext.cpp b/gui/widgets/richtext.cpp
index 51dd844b428..60da5bffd3a 100644
--- a/gui/widgets/richtext.cpp
+++ b/gui/widgets/richtext.cpp
@@ -197,9 +197,9 @@ void RichTextWidget::recalc() {
 		_surface->create(_textWidth, _textHeight, g_gui.getWM()->_pixelformat);
 
 		int h = _txtWnd->getTextHeight();
-		if (h <= _limitH) 
+		if (h <= _limitH)
 			_scrolledY = 0;
-		if (_scrolledY > h - _limitH) 
+		if (_scrolledY > h - _limitH)
 			_scrolledY = MAX(0, h - _limitH);
 		_verticalScroll->_numEntries = h;
 		_verticalScroll->_currentPos = _scrolledY;
@@ -275,9 +275,9 @@ void RichTextWidget::createWidget() {
 	}
 
 	int h = _txtWnd->getTextHeight();
-	if (h <= _limitH) 
+	if (h <= _limitH)
 		_scrolledY = 0;
-	if (_scrolledY > h - _limitH) 
+	if (_scrolledY > h - _limitH)
 		_scrolledY = MAX(0, h - _limitH);
 	_verticalScroll->_numEntries = h;
 	_verticalScroll->_currentPos = _scrolledY;
@@ -322,11 +322,11 @@ void RichTextWidget::drawWidget() {
 		int cachedHeight = _cachedTextSurface->h;
 		int maxY = MAX(0, cachedHeight - _textHeight);
 		int srcY = CLIP((int)_scrolledY, 0, maxY);
-		
+
 		_surface->simpleBlitFrom(*_cachedTextSurface, Common::Rect(0, srcY, _textWidth, MIN(srcY + _textHeight, cachedHeight)), Common::Point(0, 0));
 	} else
 		_txtWnd->draw(_surface, 0, _scrolledY, _textWidth, _textHeight, 0, 0);
-	
+
 	g_gui.theme()->drawManagedSurface(Common::Point(_x + _innerMargin, _y + _innerMargin), *_surface, Graphics::ALPHA_OPAQUE);
 }
 


Commit: 241aa55809c3957de183c567e7e0bb881443762b
    https://github.com/scummvm/scummvm/commit/241aa55809c3957de183c567e7e0bb881443762b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-03-18T16:48:44+01:00

Commit Message:
NEWS: Mention GUI Help improvements

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index d9b42d24399..e214e7abae3 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -21,6 +21,8 @@ For a more comprehensive changelog of the latest experimental code, see:
      regeneration of the translations.dat file.
    - Significantly reduced compilation time and memory usage when
      building the TinyGL component.
+   - Added Help button to the main interface and improved the dialog
+     speed.
 
  AGOS:
    - Improved support of the Acorn releases of Simon the Sorcerer.




More information about the Scummvm-git-logs mailing list