From: Aaron Traas Date: Mon, 10 Jul 2017 21:23:20 +0000 (-0400) Subject: Eliminated a label X-Git-Tag: 1.2~11 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=18ec2f79b0b2bc853be1233b3ad7af72661ace24;hp=4d7858d333057850b7d4635ba51441238f0721e2 Eliminated a label --- diff --git a/main.c b/main.c index c23b467..bff59fb 100644 --- a/main.c +++ b/main.c @@ -1138,7 +1138,7 @@ L2607: if (command.id1 == PROMOTE_WORD(CAGE) && command.id2 == PROMOTE_WORD(BIRD) && HERE(CAGE) && HERE(BIRD)) command.wd1 = token_to_packed("CATCH"); } -Lmovehint: +Lookup: if (wordeq(command.wd1, token_to_packed("WEST"))) { if (++game.iwest == 10) rspeak(W_IS_WEST); @@ -1147,7 +1147,6 @@ Lmovehint: if (++game.igo == 10) rspeak(GO_UNNEEDED); } -Lookup: packed_to_token(command.wd1, word1); defn = get_vocab_id(word1); if (defn == WORD_NOT_FOUND) { @@ -1200,7 +1199,7 @@ Lookup: strncpy(command.raw1, command.raw2, LINESIZE - 1); wordclear(&command.wd2); command.raw2[0] = '\0'; - goto Lmovehint; + goto Lookup; case GO_UNKNOWN: /* Random intransitive verbs come here. Clear obj just in case * (see attack()). */