aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/hugo/heparse.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-05-11 19:20:40 +1000
committerPaul Gilbert2019-05-12 10:19:48 +1000
commit6b6670caf9812a980a9aa4049bf6931aa943b79b (patch)
treecdd84119c95fcda75a385f8e3e14844392c58ca4 /engines/glk/hugo/heparse.cpp
parent98f6315366eafc0568d46ee4d9cba8d0d6495950 (diff)
downloadscummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.tar.gz
scummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.tar.bz2
scummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.zip
GLK: HUGO: Added hemedia & heres
Diffstat (limited to 'engines/glk/hugo/heparse.cpp')
-rw-r--r--engines/glk/hugo/heparse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/hugo/heparse.cpp b/engines/glk/hugo/heparse.cpp
index 0369385398..da01810a8e 100644
--- a/engines/glk/hugo/heparse.cpp
+++ b/engines/glk/hugo/heparse.cpp
@@ -2104,8 +2104,8 @@ NextSyn:
{
if (strcmp(word[i+1], "~and"))
{
- static char *END = "~and";
- word[i] = END;
+ static char AND[5] = "~and";
+ word[i] = AND;
wd[i] = FindWord("~and");
}
else