X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fmisc.c;h=ab9963f9af491bc892cb3dce6fdb92582b2b9bb4;hb=b37024737a3660b7eeec66738db87ccba6c1ecdb;hp=711e049db2c067527924aaad8fab26b67ab394f8;hpb=26fb22669c47b1191264d840ad240f2b901327d5;p=plomrogue diff --git a/src/misc.c b/src/misc.c index 711e049..ab9963f 100644 --- a/src/misc.c +++ b/src/misc.c @@ -135,8 +135,6 @@ extern void turn_over(struct World * world, char action) extern void save_game(struct World * world) { - char * savefile_tmp = "savefile_tmp"; - char * savefile = "savefile"; char * err_open = "Error saving game: " "Unable to open 'savefile_new' for writing."; char * err_write = "Error saving game: " @@ -147,6 +145,8 @@ extern void save_game(struct World * world) "Unable to unlink old 'savefile'."; char * err_move = "Error saving game: " "Unable to rename 'savefile_tmp' to 'savefile'."; + char * savefile_tmp = "savefile_tmp"; + char * savefile = "savefile"; FILE * file = fopen(savefile_tmp, "w"); exit_err(0 == file, world, err_open); if ( write_uint32_bigendian(world->seed, file)