[Scummvm-git-logs] scummvm master -> 4ae342f40473f8d251feb81ad5df00068867c1dc

dreammaster noreply at scummvm.org
Tue Feb 18 01:07:23 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:
a8380de90e JANITORIAL: fix typo
4ae342f404 JANITORIAL: GLK: HUGO: fix typo


Commit: a8380de90e498f06bbf2bf47a981ea841b008815
    https://github.com/scummvm/scummvm/commit/a8380de90e498f06bbf2bf47a981ea841b008815
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2025-02-17T17:07:20-08:00

Commit Message:
JANITORIAL: fix typo

in i18n note, and elsewhere while we're at it

Changed paths:
    engines/asylum/metaengine.cpp
    engines/glk/jacl/jacl_main.cpp
    engines/grim/grim.cpp


diff --git a/engines/asylum/metaengine.cpp b/engines/asylum/metaengine.cpp
index b951eff16f7..e09c6e35434 100644
--- a/engines/asylum/metaengine.cpp
+++ b/engines/asylum/metaengine.cpp
@@ -235,7 +235,7 @@ Common::KeymapArray AsylumMetaEngine::initKeymaps(const char *target) const {
 	act->addDefaultInputMapping("JOY_B");
 	resviewerKeyMap->addAction(act);
 
-	// I18N: Switch to previous image in internal game resouce viewer
+	// I18N: Switch to previous image in internal game resource viewer
 	act = new Action("PREVRESOURCE", _("Previous resource"));
 	act->setCustomEngineActionEvent(kAsylumActionPreviousResource);
 	act->addDefaultInputMapping("BACKSPACE");
@@ -243,7 +243,7 @@ Common::KeymapArray AsylumMetaEngine::initKeymaps(const char *target) const {
 	act->allowKbdRepeats();
 	resviewerKeyMap->addAction(act);
 
-	// I18N: Switch to next image in internal game resouce viewer
+	// I18N: Switch to next image in internal game resource viewer
 	act = new Action("NEXTRESOURCE", _("Next resource"));
 	act->setCustomEngineActionEvent(kAsylumActionNextResource);
 	act->addDefaultInputMapping("SPACE");
@@ -251,7 +251,7 @@ Common::KeymapArray AsylumMetaEngine::initKeymaps(const char *target) const {
 	act->allowKbdRepeats();
 	resviewerKeyMap->addAction(act);
 
-	// I18N: Switch to previous palette in internal game resouce viewer
+	// I18N: Switch to previous palette in internal game resource viewer
 	act = new Action("PREVPALETTE", _("Previous palette"));
 	act->setCustomEngineActionEvent(kAsylumActionPreviousPalette);
 	act->addDefaultInputMapping("PAGEUP");
@@ -259,7 +259,7 @@ Common::KeymapArray AsylumMetaEngine::initKeymaps(const char *target) const {
 	act->allowKbdRepeats();
 	resviewerKeyMap->addAction(act);
 
-	// I18N: Switch to next palette in internal game resouce viewer
+	// I18N: Switch to next palette in internal game resource viewer
 	act = new Action("NEXTPALETTE", _("Next palette"));
 	act->setCustomEngineActionEvent(kAsylumActionNextPalette);
 	act->addDefaultInputMapping("PAGEDOWN");
diff --git a/engines/glk/jacl/jacl_main.cpp b/engines/glk/jacl/jacl_main.cpp
index aeaf76c09bb..ee38c08e1cf 100644
--- a/engines/glk/jacl/jacl_main.cpp
+++ b/engines/glk/jacl/jacl_main.cpp
@@ -340,7 +340,7 @@ void glk_main() {
 
 				case evtype_SoundNotify:
 					/* A SOUND HAS FINISHED PLAYING CALL +sound_finished
-					 * WITH THE RESOUCE NUMBER AS THE FIRST ARGUMENT
+					 * WITH THE RESOURCE NUMBER AS THE FIRST ARGUMENT
 					 * AND THE CHANNEL NUMBER AS THE SECOND ARGUMENT */
 					Common::sprintf_s(temp_buffer, "+sound_finished<%d<%d", (int) ev.val1, (int) ev.val2 - 1);
 					execute(temp_buffer);
diff --git a/engines/grim/grim.cpp b/engines/grim/grim.cpp
index f091a6d1989..6a0515e77ee 100644
--- a/engines/grim/grim.cpp
+++ b/engines/grim/grim.cpp
@@ -778,7 +778,7 @@ void GrimEngine::handleDebugLoadResource() {
 		warning("Resource type not understood");
 	}
 	if (!resource)
-		warning("Requested resouce (%s) not found", buf);
+		warning("Requested resource (%s) not found", buf);
 }
 
 void GrimEngine::drawTextObjects() {


Commit: 4ae342f40473f8d251feb81ad5df00068867c1dc
    https://github.com/scummvm/scummvm/commit/4ae342f40473f8d251feb81ad5df00068867c1dc
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2025-02-17T17:07:20-08:00

Commit Message:
JANITORIAL: GLK: HUGO: fix typo

Changed paths:
    engines/glk/hugo/hugo.cpp


diff --git a/engines/glk/hugo/hugo.cpp b/engines/glk/hugo/hugo.cpp
index 5a10ca43f2a..45fd8ff4322 100644
--- a/engines/glk/hugo/hugo.cpp
+++ b/engines/glk/hugo/hugo.cpp
@@ -150,7 +150,7 @@ void Hugo::runGame() {
 	pbuffer[0] = '\0';
 
 	ResourceArchive *res = new ResourceArchive();
-	SearchMan.add("Resouces", res);
+	SearchMan.add("Resources", res);
 
 	gameseg = 0;
 




More information about the Scummvm-git-logs mailing list