[Scummvm-git-logs] scummvm master -> 088b09c3be99b273f26e2bb14706ad372c363ef6

eriktorbjorn eriktorbjorn at telia.com
Thu Feb 14 18:08:01 CET 2019


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:
088b09c3be GLK: FROTZ: Fix expansion of "g" to "again" in some ancient games.


Commit: 088b09c3be99b273f26e2bb14706ad372c363ef6
    https://github.com/scummvm/scummvm/commit/088b09c3be99b273f26e2bb14706ad372c363ef6
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2019-02-14T18:07:23+01:00

Commit Message:
GLK: FROTZ: Fix expansion of "g" to "again" in some ancient games.

Changed paths:
    engines/glk/frotz/processor_text.cpp


diff --git a/engines/glk/frotz/processor_text.cpp b/engines/glk/frotz/processor_text.cpp
index 0ae2124..c56524a 100644
--- a/engines/glk/frotz/processor_text.cpp
+++ b/engines/glk/frotz/processor_text.cpp
@@ -570,7 +570,7 @@ void Processor::handleAbbreviations() {
 
 	// Check for standard abbreviations
 	if (word == "g")
-		word == "again";
+		word = "again";
 	else if (word == "o")
 		word = "oops";
 	else if (word == "x")





More information about the Scummvm-git-logs mailing list