X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=main.c;h=a162463edc251ea9f6cc1af224c706b21753d9e6;hb=5de3b8ff7018e56dc876b1ac579de53597fd96f9;hp=124ba44105ead1eff413e4cef8ddd29e71972d84;hpb=fe378b9e136bfe93b5166ef36f03cad976d643b2;p=open-adventure.git diff --git a/main.c b/main.c index 124ba44..a162463 100644 --- a/main.c +++ b/main.c @@ -24,7 +24,7 @@ void autosave(void) { if (autosave_fp != NULL) { rewind(autosave_fp); - savefile(autosave_fp, /* version (auto): */0); + savefile(autosave_fp); fflush(autosave_fp); } } @@ -463,8 +463,7 @@ static void describe_location(void) { const char* msg = locations[game.loc].description.small; - if (MOD(game.abbrev[game.loc], game.abbnum) == 0 || - msg == NO_MESSAGE) + if (MOD(game.abbrev[game.loc], game.abbnum) == 0 || msg == NO_MESSAGE) msg = locations[game.loc].description.big; if (!FORCED(game.loc) && DARK(game.loc)) {