saturn: the policy of the yabause team values backwards compatibility of savestates highly, so that there are a number of awkward things in savestating where certain variables are regenerated instead of being stored directly to keep compatibility. this has gotten to the point that if you, while paused, save slot 1, load slot 1, save slot 2, then the slot 1&2 saves will not be byte-identical. this commit fixes a certain case of that. i don't know whether this actually fixes any tangible user problems, though.
This commit is contained in:
parent
7810621d6d
commit
9de465fa41
Binary file not shown.
|
@ -105,7 +105,6 @@
|
|||
<ClCompile Include="..\sh2int.c" />
|
||||
<ClCompile Include="..\sh2trace.c" />
|
||||
<ClCompile Include="..\smpc.c" />
|
||||
<ClCompile Include="..\sndal.c" />
|
||||
<ClCompile Include="..\snddummy.c" />
|
||||
<ClCompile Include="..\sndwav.c" />
|
||||
<ClCompile Include="..\thr-dummy.c" />
|
||||
|
|
|
@ -93,9 +93,6 @@
|
|||
<ClCompile Include="..\smpc.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\sndal.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\snddummy.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
@ -1067,8 +1067,8 @@ int YabSaveState(const char *filename)
|
|||
ywrite(&check, (void *)&temp, sizeof(int), 1, fp);
|
||||
temp = (yabsys.CurSH2FreqType == CLKTYPE_26MHZ) ? 268 : 286;
|
||||
ywrite(&check, (void *)&temp, sizeof(int), 1, fp);
|
||||
temp32 = (yabsys.UsecFrac * temp / 10) >> YABSYS_TIMING_BITS;
|
||||
ywrite(&check, (void *)&temp32, sizeof(u32), 1, fp);
|
||||
//temp32 = (yabsys.UsecFrac * temp / 10) >> YABSYS_TIMING_BITS;
|
||||
ywrite(&check, (void *)&yabsys.UsecFrac, sizeof(u32), 1, fp);
|
||||
ywrite(&check, (void *)&yabsys.CurSH2FreqType, sizeof(int), 1, fp);
|
||||
ywrite(&check, (void *)&yabsys.IsPal, sizeof(int), 1, fp);
|
||||
/*
|
||||
|
@ -1299,11 +1299,11 @@ int YabLoadState(const char *filename)
|
|||
yread(&check, (void *)&yabsys.MaxLineCount, sizeof(int), 1, fp);
|
||||
yread(&check, (void *)&temp, sizeof(int), 1, fp);
|
||||
yread(&check, (void *)&temp, sizeof(int), 1, fp);
|
||||
yread(&check, (void *)&temp32, sizeof(u32), 1, fp);
|
||||
yread(&check, (void *)&yabsys.UsecFrac, sizeof(u32), 1, fp);
|
||||
yread(&check, (void *)&yabsys.CurSH2FreqType, sizeof(int), 1, fp);
|
||||
yread(&check, (void *)&yabsys.IsPal, sizeof(int), 1, fp);
|
||||
YabauseChangeTiming(yabsys.CurSH2FreqType);
|
||||
yabsys.UsecFrac = (temp32 << YABSYS_TIMING_BITS) * temp / 10;
|
||||
//YabauseChangeTiming(yabsys.CurSH2FreqType);
|
||||
//yabsys.UsecFrac = (temp32 << YABSYS_TIMING_BITS) * temp / 10;
|
||||
|
||||
if (headerversion > 1) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue