Readability tweak.

This commit is contained in:
Eric S. Raymond 2017-06-11 11:28:30 -04:00
parent bfda14305a
commit 2576613759

View file

@ -83,13 +83,13 @@ int saveresume(FILE *input, bool resume)
SETPRM(1,k/10,MOD(k,10)); SETPRM(1,k/10,MOD(k,10));
SETPRM(3,VRSION/10,MOD(VRSION,10)); SETPRM(3,VRSION/10,MOD(VRSION,10));
RSPEAK(269); RSPEAK(269);
return(2000); } else {
memcpy(&game, &save.game, sizeof(struct game_t));
OBJSND[BIRD] = save.bird;
OBJTXT[OYSTER] = save.bivalve;
game.zzword=RNDVOC(3,game.zzword);
} }
memcpy(&game, &save.game, sizeof(struct game_t)); return 2000;
OBJSND[BIRD] = save.bird;
OBJTXT[OYSTER] = save.bivalve;
game.zzword=RNDVOC(3,game.zzword);
return(2000);
} }
} }