[Scummvm-git-logs] scummvm master -> 443532e04e30ac37e28c5bf757ccbe893c6de577

bluegr noreply at scummvm.org
Sat May 17 19:35:10 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:
443532e04e GOB: fix o7_openTranslationDB typo


Commit: 443532e04e30ac37e28c5bf757ccbe893c6de577
    https://github.com/scummvm/scummvm/commit/443532e04e30ac37e28c5bf757ccbe893c6de577
Author: Benjamin Funke (bjnfne at web.de)
Date: 2025-05-17T22:35:07+03:00

Commit Message:
GOB: fix o7_openTranslationDB typo

Changed paths:
    engines/gob/inter.h
    engines/gob/inter_v7.cpp


diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index 0b2f89eb67f..7d9cbd06fe4 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -747,7 +747,7 @@ protected:
 	void o7_seekHtmlFile();
 	void o7_nextKeywordHtmlFile();
 	void o7_draw0xC3();
-	void o7_openTranlsationDB();
+	void o7_openTranslationDB();
 	void o7_closeTranslationDB();
 	void o7_getDBString();
 	void o7_draw0xCC();
diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp
index d32542aa582..5af2aba95e4 100644
--- a/engines/gob/inter_v7.cpp
+++ b/engines/gob/inter_v7.cpp
@@ -108,7 +108,7 @@ void Inter_v7::setupOpcodesDraw() {
 	OPCODEDRAW(0xC0, o7_seekHtmlFile);
 	OPCODEDRAW(0xC1, o7_nextKeywordHtmlFile);
 	OPCODEDRAW(0xC3, o7_draw0xC3);
-	OPCODEDRAW(0xC4, o7_openTranlsationDB);
+	OPCODEDRAW(0xC4, o7_openTranslationDB);
 	OPCODEDRAW(0xC5, o7_closeTranslationDB);
 	OPCODEDRAW(0xC6, o7_getDBString);
 	OPCODEDRAW(0xCC, o7_draw0xCC);
@@ -1331,7 +1331,7 @@ void Inter_v7::o7_draw0xC3() {
 	warning("STUB: o7_draw0xC3 (Adibou/Musique)");
 }
 
-void Inter_v7::o7_openTranlsationDB() {
+void Inter_v7::o7_openTranslationDB() {
 	Common::String dbFile = getFile(_vm->_game->_script->evalString());
 	Common::String id     = _vm->_game->_script->evalString();
 




More information about the Scummvm-git-logs mailing list