Change savegame filenames from dukesav#.esv to save#.esv.

git-svn-id: https://svn.eduke32.com/eduke32@6167 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2017-06-09 06:41:28 +00:00
parent b13deef232
commit 18870b0bc1

View file

@ -148,13 +148,13 @@ void ReadSaveGameHeaders(void)
EDUKE32_STATIC_ASSERT(sizeof(h.savename) == sizeof(ud.savegame[0])); EDUKE32_STATIC_ASSERT(sizeof(h.savename) == sizeof(ud.savegame[0]));
Bstrcpy(fn, "dukesav0.esv"); Bstrcpy(fn, "save0.esv");
for (i=0; i<MAXSAVEGAMES; i++) for (i=0; i<MAXSAVEGAMES; i++)
{ {
int32_t k; int32_t k;
fn[7] = i + '0'; fn[4] = i + '0';
fil = kopen4loadfrommod(fn, 0); fil = kopen4loadfrommod(fn, 0);
if (fil == -1) if (fil == -1)
{ {
@ -185,8 +185,8 @@ int32_t G_LoadSaveHeaderNew(int32_t spot, savehead_t *saveh)
Bassert(spot < MAXSAVEGAMES); Bassert(spot < MAXSAVEGAMES);
Bstrcpy(fn, "dukesav0.esv"); Bstrcpy(fn, "save0.esv");
fn[7] = spot + '0'; fn[4] = spot + '0';
fil = kopen4loadfrommod(fn, 0); fil = kopen4loadfrommod(fn, 0);
if (fil == -1) if (fil == -1)
@ -239,8 +239,8 @@ int32_t G_LoadPlayer(int32_t spot)
Bassert(spot < MAXSAVEGAMES); Bassert(spot < MAXSAVEGAMES);
Bstrcpy(fn, "dukesav0.esv"); Bstrcpy(fn, "save0.esv");
fn[7] = spot + '0'; fn[4] = spot + '0';
fil = kopen4loadfrommod(fn, 0); fil = kopen4loadfrommod(fn, 0);
if (fil == -1) if (fil == -1)
@ -404,8 +404,8 @@ int32_t G_SavePlayer(int32_t spot)
G_SaveTimers(); G_SaveTimers();
Bstrcpy(fn, "dukesav0.esv"); Bstrcpy(fn, "save0.esv");
fn[7] = spot + '0'; fn[4] = spot + '0';
// Bstrcpy(mpfn, "edukA_00.esv"); // Bstrcpy(mpfn, "edukA_00.esv");