[Scummvm-git-logs] scummvm master -> d1dd49a6d88b40aa80c0b8039a05b6762196966d
mduggan
noreply at scummvm.org
Sun Mar 2 08:24:56 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
4bda66c474 DGDS: Move Willy Beamish from Unstable to Testing
d1dd49a6d8 DGDS: Fix beamish dialog workaround a little
Commit: 4bda66c474a093e89dc26e9b553953aa57e9128c
https://github.com/scummvm/scummvm/commit/4bda66c474a093e89dc26e9b553953aa57e9128c
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2025-03-02T19:23:16+11:00
Commit Message:
DGDS: Move Willy Beamish from Unstable to Testing
Changed paths:
engines/dgds/detection_tables.h
diff --git a/engines/dgds/detection_tables.h b/engines/dgds/detection_tables.h
index 1436c89b5b4..f185333a798 100644
--- a/engines/dgds/detection_tables.h
+++ b/engines/dgds/detection_tables.h
@@ -172,7 +172,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO1(GUIO_NONE)
},
@@ -187,7 +187,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::DE_DEU,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO1(GUIO_NONE)
},
@@ -217,7 +217,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO1(GUIO_NONE)
},
@@ -232,7 +232,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO1(GUIO_NONE)
},
@@ -247,7 +247,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE | ADGF_DEMO,
+ ADGF_TESTING | ADGF_DEMO,
GUIO1(GUIO_NONE)
},
@@ -266,7 +266,7 @@ static const ADGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE | ADGF_DEMO | ADGF_DGDS_ALT_DIALOG_COLORS,
+ ADGF_TESTING | ADGF_DEMO | ADGF_DGDS_ALT_DIALOG_COLORS,
GUIO1(GUIO_NONE)
},
Commit: d1dd49a6d88b40aa80c0b8039a05b6762196966d
https://github.com/scummvm/scummvm/commit/d1dd49a6d88b40aa80c0b8039a05b6762196966d
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2025-03-02T19:24:34+11:00
Commit Message:
DGDS: Fix beamish dialog workaround a little
Changed paths:
engines/dgds/dialog.cpp
diff --git a/engines/dgds/dialog.cpp b/engines/dgds/dialog.cpp
index ad5fcfd7672..0c5a5338064 100644
--- a/engines/dgds/dialog.cpp
+++ b/engines/dgds/dialog.cpp
@@ -381,7 +381,7 @@ void Dialog::drawType4(Graphics::ManagedSurface *dst, DialogDrawStage stage) {
}
// WORKAROUND for the Willy Beamish dialogs which are 20x20 - these should not be drawn
- if (gameId == GID_WILLY && (w <= 20 && h <= 20))
+ if (gameId == GID_WILLY && (w <= 22 && h <= 22))
return;
drawForeground(dst, fillcolor, _str);
More information about the Scummvm-git-logs
mailing list