[Scummvm-git-logs] scummvm master -> 53f418f99c98106200acd666ace90b4655fdfa30

dreammaster noreply at scummvm.org
Mon Sep 15 06:34:30 UTC 2025


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:
53f418f99c BAGEL: MINIGAMES: Further minigame Options dialog fixes


Commit: 53f418f99c98106200acd666ace90b4655fdfa30
    https://github.com/scummvm/scummvm/commit/53f418f99c98106200acd666ace90b4655fdfa30
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-09-14T23:34:15-07:00

Commit Message:
BAGEL: MINIGAMES: Further minigame Options dialog fixes

Changed paths:
    engines/bagel/hodjnpodj/crypt/optn.h
    engines/bagel/hodjnpodj/dfa/optdlg.cpp
    engines/bagel/hodjnpodj/packrat/optdlg.cpp


diff --git a/engines/bagel/hodjnpodj/crypt/optn.h b/engines/bagel/hodjnpodj/crypt/optn.h
index 405198a3434..fb2e8d94da9 100644
--- a/engines/bagel/hodjnpodj/crypt/optn.h
+++ b/engines/bagel/hodjnpodj/crypt/optn.h
@@ -38,7 +38,7 @@ namespace Crypt {
 #define MAX_INDEX_TIME      18
 
 #define OPTIONS_COLOR       RGB(0, 0, 0)    // Color of the stats info CText
-#define FONT_SIZE           18
+#define FONT_SIZE           16
 
 #define STAT_BOX_COL        20
 #define STAT_BOX_ROW        20
diff --git a/engines/bagel/hodjnpodj/dfa/optdlg.cpp b/engines/bagel/hodjnpodj/dfa/optdlg.cpp
index c049e916c79..66f5f1463f9 100644
--- a/engines/bagel/hodjnpodj/dfa/optdlg.cpp
+++ b/engines/bagel/hodjnpodj/dfa/optdlg.cpp
@@ -71,8 +71,8 @@ CColorButton    *pDFACancelButton = nullptr;
  ****************************************************************/
 CDFAOptDlg::CDFAOptDlg(CWnd *pParent, CPalette *pPalette, unsigned int nID)
 	:  CBmpDialog(pParent, pPalette, nID, ".\\ART\\SSCROLL.BMP"),
-		rDisplayGTime(43, 85, 174, 97),
-		rDisplayBTime(43, 35, 174, 47) {
+		rDisplayGTime(43, 85, 174, 98),
+		rDisplayBTime(43, 35, 174, 48) {
 	CDC     *pDC = GetDC();
 
 	pPackRatOptPalette = pPalette;
@@ -266,8 +266,8 @@ void CDFAOptDlg::OnPaint() {
 
 //      now paint in my text with a transparent background
 	nOldBkMode = pDC->SetBkMode(TRANSPARENT);
-	pDC->TextOut(43, 20, strBTime);
-	pDC->TextOut(43, 65, strGTime);
+	pDC->TextOut(43, 24, strBTime);
+	pDC->TextOut(43, 69, strGTime);
 	pDC->SetBkMode(nOldBkMode);
 
 	switch (m_nGameTime) {
diff --git a/engines/bagel/hodjnpodj/packrat/optdlg.cpp b/engines/bagel/hodjnpodj/packrat/optdlg.cpp
index 8070f70b46f..5178f3b2aa3 100644
--- a/engines/bagel/hodjnpodj/packrat/optdlg.cpp
+++ b/engines/bagel/hodjnpodj/packrat/optdlg.cpp
@@ -64,8 +64,8 @@ CColorButton    *pPRCancelButton = nullptr;
  ****************************************************************/
 CPackRatOptDlg::CPackRatOptDlg(CWnd *pParent, CPalette *pPalette, unsigned int nID) :
 		CBmpDialog(pParent, pPalette, nID, ".\\ART\\SSCROLL.BMP"),
-		rectDisplayLevel(43, 60, 174, 72),
-		rectDisplayLives(43, 101, 174, 113) {
+		rectDisplayLevel(43, 60, 174, 73),
+		rectDisplayLives(43, 101, 174, 114) {
 	CDC     *pDC = GetDC();
 	pPackRatOptPalette = pPalette;
 	ptxtLevel = new CText;




More information about the Scummvm-git-logs mailing list