From: Eric S. Raymond Date: Mon, 12 Jun 2017 13:28:11 +0000 (-0400) Subject: Eliminare L8 label. X-Git-Tag: 1.1~382 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=1c4097314abd4a1fbf380fba17dcd5a499a11eca Eliminare L8 label. --- diff --git a/main.c b/main.c index 9c56a0e..be3f2f1 100644 --- a/main.c +++ b/main.c @@ -1070,12 +1070,11 @@ L2630: Laction: switch (action(cmdin, part, VERB, obj)) { - case 2: return true; + case 2: + return true; case 8: - if (playermove(cmdin, VERB, NUL)) - return true; - else - goto L2000; + playermove(cmdin, VERB, NUL); + return true; case 2000: goto L2000; case 2012: goto L2012; case 2600: goto L2600; @@ -1103,3 +1102,5 @@ Laction: BUG(99); } } + +/* EMD */