mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
Savegame corruption fix
git-svn-id: https://svn.eduke32.com/eduke32@126 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
05844d093d
commit
a61f880dc0
1 changed files with 2 additions and 4 deletions
|
@ -1042,14 +1042,12 @@ int ReadGameVars(long fil)
|
||||||
// AddLog(g_szBuf);
|
// AddLog(g_szBuf);
|
||||||
|
|
||||||
if(kdfread(&iGameVarCount,sizeof(iGameVarCount),1,fil) != 1) goto corrupt;
|
if(kdfread(&iGameVarCount,sizeof(iGameVarCount),1,fil) != 1) goto corrupt;
|
||||||
|
|
||||||
for(i=0;i<iGameVarCount;i++)
|
for(i=0;i<iGameVarCount;i++)
|
||||||
{
|
{
|
||||||
if(kdfread(&(aGameVars[i]),sizeof(MATTGAMEVAR),1,fil) != 1) goto corrupt;
|
if(kdfread(&(aGameVars[i]),sizeof(MATTGAMEVAR),1,fil) != 1) goto corrupt;
|
||||||
aGameVars[i].szLabel=Bcalloc(MAXVARLABEL,sizeof(char));
|
aGameVars[i].szLabel=Bcalloc(MAXVARLABEL,sizeof(char));
|
||||||
if(kdfread(aGameVars[i].szLabel,sizeof(char) * MAXVARLABEL, 1, fil) != 1) goto corrupt;
|
if(kdfread(aGameVars[i].szLabel,sizeof(char) * MAXVARLABEL, 1, fil) != 1) goto corrupt;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
|
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
|
||||||
// AddLog(g_szBuf);
|
// AddLog(g_szBuf);
|
||||||
for(i=0;i<iGameVarCount;i++)
|
for(i=0;i<iGameVarCount;i++)
|
||||||
|
@ -1081,7 +1079,7 @@ int ReadGameVars(long fil)
|
||||||
{
|
{
|
||||||
//Bsprintf(g_szBuf,"Reading value array for %s (%d)",aGameVars[i].szLabel,sizeof(long) * MAXSPRITES);
|
//Bsprintf(g_szBuf,"Reading value array for %s (%d)",aGameVars[i].szLabel,sizeof(long) * MAXSPRITES);
|
||||||
//AddLog(g_szBuf);
|
//AddLog(g_szBuf);
|
||||||
if(kdfread(aGameVars[i].plValues,sizeof(long) * MAXSPRITES, 1, fil) != 1) goto corrupt;
|
if(kdfread(&aGameVars[i].plValues[0],sizeof(long), MAXSPRITES, fil) != MAXSPRITES) goto corrupt;
|
||||||
}
|
}
|
||||||
// else nothing 'extra...'
|
// else nothing 'extra...'
|
||||||
}
|
}
|
||||||
|
@ -1149,7 +1147,7 @@ void SaveGameVars(FILE *fil)
|
||||||
{
|
{
|
||||||
//Bsprintf(g_szBuf,"Writing value array for %s (%d)",aGameVars[i].szLabel,sizeof(long) * MAXSPRITES);
|
//Bsprintf(g_szBuf,"Writing value array for %s (%d)",aGameVars[i].szLabel,sizeof(long) * MAXSPRITES);
|
||||||
//AddLog(g_szBuf);
|
//AddLog(g_szBuf);
|
||||||
dfwrite(aGameVars[i].plValues,sizeof(long) * MAXSPRITES, 1, fil);
|
dfwrite(&aGameVars[i].plValues[0],sizeof(long), MAXSPRITES, fil);
|
||||||
}
|
}
|
||||||
// else nothing 'extra...'
|
// else nothing 'extra...'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue