[Scummvm-git-logs] scummvm master -> 347f178b4f40dd486af94bd624c33a252f528130

dreammaster dreammaster at scummvm.org
Thu Dec 17 04:31:31 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
347f178b4f GLK: COMPREHEND: Fix directional movement in Talisman


Commit: 347f178b4f40dd486af94bd624c33a252f528130
    https://github.com/scummvm/scummvm/commit/347f178b4f40dd486af94bd624c33a252f528130
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-12-16T20:31:11-08:00

Commit Message:
GLK: COMPREHEND: Fix directional movement in Talisman

Changed paths:
    engines/glk/comprehend/game.cpp


diff --git a/engines/glk/comprehend/game.cpp b/engines/glk/comprehend/game.cpp
index 9369a58300..911077ee72 100644
--- a/engines/glk/comprehend/game.cpp
+++ b/engines/glk/comprehend/game.cpp
@@ -734,7 +734,7 @@ void ComprehendGame::handleAction(Sentence *sentence) {
 	if (_functionNum == 0) {
 		console_println(stringLookup(STRING_DONT_UNDERSTAND).c_str());
 	} else {
-		eval_function(_functionNum, nullptr);
+		eval_function(_functionNum, sentence);
 		_functionNum = 0;
 		eval_function(0, nullptr);
 	}




More information about the Scummvm-git-logs mailing list