aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-06 15:40:39 -0700
committerPaul Gilbert2019-07-06 15:40:39 -0700
commitf445578a4d11929e381caed81aa0df973c655ab6 (patch)
tree99b268e07e6fa230b41a71a96e6de2547b4dbfd9 /engines
parent1c412d3da705dabd709614c409927ce8f6fbfe05 (diff)
downloadscummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.tar.gz
scummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.tar.bz2
scummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.zip
GLK: ALAN3: Fix hang after entering unknown word
Diffstat (limited to 'engines')
-rw-r--r--engines/glk/alan3/msg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/alan3/msg.cpp b/engines/glk/alan3/msg.cpp
index b26e78ac5e..438b58d6e2 100644
--- a/engines/glk/alan3/msg.cpp
+++ b/engines/glk/alan3/msg.cpp
@@ -56,7 +56,7 @@ void error(CONTEXT, MsgKind msgno) { /* IN - The error message number */
/* Print an error message and longjmp to main loop. */
if (msgno != NO_MSG)
printMessage(msgno);
- LONG_JUMP_LABEL("return");
+ LONG_JUMP_LABEL("returnError");
}
}