From e72887abbc430e3f6c5c5f9031f4a6293fbf1a2b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Fri, 11 Nov 2022 11:20:49 +0100 Subject: [PATCH] fix reported savegame slot number --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index d11055c9..75a65d7a 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -2169,7 +2169,7 @@ static void G_DoLoadGame(void) int maplumpnum = W_CheckNumForName(maplump); fprintf(stderr, "G_DoLoadGame: Slot %d, %.8s (%s)\n", - savegameslot, maplump, W_WadNameForLump(maplumpnum)); + 10*savepage+savegameslot, maplump, W_WadNameForLump(maplumpnum)); } }