[Scummvm-git-logs] scummvm master -> 0f90998ad318902da47ae2cebb5255c642d4130a
sdelamarre
noreply at scummvm.org
Thu May 4 21:47:17 UTC 2023
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:
f0746b0aee GOB: some versions of Adi2 also need coordinates adjustment
0f90998ad3 GOB: add a UK version of Adibou1 (bug report #13972)
Commit: f0746b0aee5bddb5efd31a44c5a5a87e0cd8cad9
https://github.com/scummvm/scummvm/commit/f0746b0aee5bddb5efd31a44c5a5a87e0cd8cad9
Author: Simon Delamarre (simon.delamarre14 at gmail.com)
Date: 2023-05-04T23:37:16+02:00
Commit Message:
GOB: some versions of Adi2 also need coordinates adjustment
Changed paths:
engines/gob/game.cpp
diff --git a/engines/gob/game.cpp b/engines/gob/game.cpp
index 118ce5e0a4d..ae039b381d4 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -575,7 +575,8 @@ void Game::playTot(int16 function) {
break;
}
- if (_vm->getGameType() == kGameTypeAdibou1) { // TODO: probably needed by other games (Adi 2?)
+ if (_vm->getGameType() == kGameTypeAdibou1 ||
+ _vm->getGameType() == kGameTypeAdi2) { // TODO: maybe needed by other games
_vm->_draw->_needAdjust = _vm->_game->_script->getData()[58];
if (_vm->_draw->_needAdjust <= 1 || _vm->_draw->_needAdjust >= 8)
_vm->_draw->_needAdjust = 2;
Commit: 0f90998ad318902da47ae2cebb5255c642d4130a
https://github.com/scummvm/scummvm/commit/0f90998ad318902da47ae2cebb5255c642d4130a
Author: Simon Delamarre (simon.delamarre14 at gmail.com)
Date: 2023-05-04T23:46:58+02:00
Commit Message:
GOB: add a UK version of Adibou1 (bug report #13972)
Changed paths:
engines/gob/detection/tables_adibou1.h
diff --git a/engines/gob/detection/tables_adibou1.h b/engines/gob/detection/tables_adibou1.h
index 2e4cdd30add..27994ef5996 100644
--- a/engines/gob/detection/tables_adibou1.h
+++ b/engines/gob/detection/tables_adibou1.h
@@ -105,6 +105,22 @@
0, 0, 0
},
+// supplied by jp438-2 in bug report #13972
+{
+ {
+ "adibou1",
+ "Adi Jnr.",
+ AD_ENTRY1s("intro.stk", "6d234641b74b3bdf746c39a64ff1abcc", 2678326),
+ EN_GRB,
+ kPlatformDOS,
+ ADGF_UNSTABLE,
+ GUIO2(GUIO_NOSUBTITLES, GUIO_NOSPEECH)
+ },
+ kGameTypeAdibou1,
+ kFeaturesAdLib,
+ 0, 0, 0
+},
+
// -- Amiga Floppy --
More information about the Scummvm-git-logs
mailing list