[Scummvm-git-logs] scummvm master -> e6ba1e61c1ea859a30c2c6880cdfff512211e00a
bluegr
noreply at scummvm.org
Sun Jun 23 13:44:50 UTC 2024
This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
7faeeb06bb GOB: split variables commands to own section
77dfc0d611 GOB: add german version of Bargon Attack
e6ba1e61c1 GOB: replace incorrect filename in comment
Commit: 7faeeb06bb61fe8fe8bf1b52a69f070a7c079fd2
https://github.com/scummvm/scummvm/commit/7faeeb06bb61fe8fe8bf1b52a69f070a7c079fd2
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-06-23T16:44:47+03:00
Commit Message:
GOB: split variables commands to own section
Changed paths:
engines/gob/console.cpp
diff --git a/engines/gob/console.cpp b/engines/gob/console.cpp
index b85007b296e..3bbbe41e9c3 100644
--- a/engines/gob/console.cpp
+++ b/engines/gob/console.cpp
@@ -69,6 +69,9 @@ bool GobConsole::cmd_Help(int, const char **) {
debugPrintf(" continue - returns back to the game\n");
debugPrintf(" listArchives - shows which Archives are currently being used\n");
debugPrintf(" cheat - enables Cheats for Geisha\n");
+ debugPrintf("\n");
+ debugPrintf("Variables\n");
+ debugPrintf("---------\n");
debugPrintf(" varSize - shows the size of a variable in bytes\n");
debugPrintf(" dumpVars - dumps the variables to variables.dmp\n");
debugPrintf(" var8 - manipulates 8-bit variables; usage: var8 <var offset> (<value>)\n");
Commit: 77dfc0d611f3117a57aafc7b8c919da3bf3ebc16
https://github.com/scummvm/scummvm/commit/77dfc0d611f3117a57aafc7b8c919da3bf3ebc16
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-06-23T16:44:47+03:00
Commit Message:
GOB: add german version of Bargon Attack
reported in bugreport #15178 by gabberhead
Changed paths:
engines/gob/detection/tables_bargon.h
diff --git a/engines/gob/detection/tables_bargon.h b/engines/gob/detection/tables_bargon.h
index 1406f4b0745..3a68b3cd42f 100644
--- a/engines/gob/detection/tables_bargon.h
+++ b/engines/gob/detection/tables_bargon.h
@@ -126,6 +126,19 @@
kFeaturesNone,
0, 0, 0
},
+{ // Supplied by gabberhead in bugreport #15178
+ {
+ "bargon",
+ "",
+ AD_ENTRY1s("intro.stk", "e9ec1eebdec327794681b2b66a30f159", 270055),
+ DE_DEU,
+ kPlatformAmiga,
+ ADGF_NO_FLAGS,
+ GUIO2(GUIO_NOSUBTITLES, GUIO_NOSPEECH)
+ },
+ kFeaturesNone,
+ 0, 0, 0
+},
// -- Atari ST --
Commit: e6ba1e61c1ea859a30c2c6880cdfff512211e00a
https://github.com/scummvm/scummvm/commit/e6ba1e61c1ea859a30c2c6880cdfff512211e00a
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-06-23T16:44:47+03:00
Commit Message:
GOB: replace incorrect filename in comment
Changed paths:
engines/gob/util.cpp
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 8eddfaf9d4c..cc739ea8014 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -522,7 +522,7 @@ void Util::cutFromStr(char *str, int16 from, int16 cutlen) {
} while (str[i] != 0);
}
-// A copy of this utility function is used by fileio.cpp.
+// A copy of this utility function is used by dataio.cpp.
void Util::replaceChar(char *str, char c1, char c2) {
while ((str = strchr(str, c1)))
*str = c2;
More information about the Scummvm-git-logs
mailing list