diff options
| author | Torbjörn Andersson | 2019-02-14 18:07:23 +0100 |
|---|---|---|
| committer | Torbjörn Andersson | 2019-02-14 18:07:23 +0100 |
| commit | 088b09c3be99b273f26e2bb14706ad372c363ef6 (patch) | |
| tree | 4196b7ca1959e3b3d83d4312ebca4a9dd1a2742f | |
| parent | 9d94970c0ffd819065bc77b944ec106f552be259 (diff) | |
| download | scummvm-rg350-088b09c3be99b273f26e2bb14706ad372c363ef6.tar.gz scummvm-rg350-088b09c3be99b273f26e2bb14706ad372c363ef6.tar.bz2 scummvm-rg350-088b09c3be99b273f26e2bb14706ad372c363ef6.zip | |
GLK: FROTZ: Fix expansion of "g" to "again" in some ancient games.
| -rw-r--r-- | engines/glk/frotz/processor_text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/processor_text.cpp b/engines/glk/frotz/processor_text.cpp index 0ae21240c5..c56524aca6 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") |
