diff options
author | Paul Gilbert | 2019-07-06 15:40:39 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-07-06 15:40:39 -0700 |
commit | f445578a4d11929e381caed81aa0df973c655ab6 (patch) | |
tree | 99b268e07e6fa230b41a71a96e6de2547b4dbfd9 | |
parent | 1c412d3da705dabd709614c409927ce8f6fbfe05 (diff) | |
download | scummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.tar.gz scummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.tar.bz2 scummvm-rg350-f445578a4d11929e381caed81aa0df973c655ab6.zip |
GLK: ALAN3: Fix hang after entering unknown word
-rw-r--r-- | engines/glk/alan3/msg.cpp | 2 |
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"); } } |