X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=cheat.c;h=1a415b750a173af2f2d61d2067e5ddee9bdb2604;hb=82c3ae5e65573b97f52d3c14986d45167fa8f884;hp=df9ab5b9af03b0c501e24282969fdaee2d1976ea;hpb=98b95e92ee960fce037097bc64100824578bbbf3;p=open-adventure.git diff --git a/cheat.c b/cheat.c index df9ab5b..1a415b7 100644 --- a/cheat.c +++ b/cheat.c @@ -4,9 +4,9 @@ * savefile(), so we know we're always outputting save files that advent * can import. * - * Copyright (c) 1977, 2005 by Will Crowther and Don Woods - * Copyright (c) 2017 by Eric S. Raymond - * SPDX-License-Identifier: BSD-2-clause + * SPDX-FileCopyrightText: 1977, 2005 by Will Crowther and Don Woods + * SPDX-FileCopyrightText: 2017 by Eric S. Raymond + * SPDX-License-Identifier: BSD-2-Clause */ #include #include @@ -19,7 +19,6 @@ int main(int argc, char *argv[]) { int ch; char *savefilename = NULL; - int version = 0; FILE *fp = NULL; // Initialize game variables @@ -59,8 +58,8 @@ int main(int argc, char *argv[]) printf("cheat: game.turns = %d\n", game.turns); break; case 'v': - version = atoi(optarg); - printf("cheat: version = %d\n", version); + save.version = atoi(optarg); + printf("cheat: version = %d\n", save.version); break; case 'o': savefilename = optarg; @@ -89,7 +88,7 @@ int main(int argc, char *argv[]) exit(EXIT_FAILURE); } - savefile(fp, version); + savefile(fp); fclose(fp);