X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=cheat.c;h=9842d5cf07d284153a8a9d9aba3578ac43083179;hb=2db3bed3f1ee0a220bf1d1b818716afb90b30b35;hp=d25e218fdf9a70b153b16cf836e8758037683105;hpb=bb2b8e0fcad10cf896acd1bfd42267c40f4f21ea;p=open-adventure.git diff --git a/cheat.c b/cheat.c index d25e218..9842d5c 100644 --- a/cheat.c +++ b/cheat.c @@ -1,12 +1,11 @@ /* * 'cheat' is a tool for generating save game files to test states that ought * not happen. It leverages chunks of advent, mostly initialize() and - * savefile(), so we know we're always outputing save files that advent + * 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: Copyright 1977, 2005 by Will Crowther and Don Woods, Copyrighy + * SPDX-License-Identifier: BSD-2-Clause */ #include #include @@ -19,7 +18,6 @@ int main(int argc, char *argv[]) { int ch; char *savefilename = NULL; - int version = 0; FILE *fp = NULL; // Initialize game variables @@ -59,8 +57,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 +87,7 @@ int main(int argc, char *argv[]) exit(EXIT_FAILURE); } - savefile(fp, version); + savefile(fp); fclose(fp); @@ -98,13 +96,18 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } -/* +// LCOV_EXCL_START +/* * Ugh...unused, but required for linkage. - * See thje actually useful version of this in main.c + * See the actually useful version of this in main.c */ char *myreadline(const char *prompt) { return readline(prompt); } +// LCOV_EXCL_STOP + +/* end */ +