Skip to content

Commit

Permalink
Assign s#2 to olds#2 when loading savegames
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlaux committed Jan 6, 2025
1 parent 43de780 commit 7064a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/p_saveg.c
Original file line number Diff line number Diff line change
Expand Up @@ -761,10 +761,10 @@ static void saveg_read_pspdef_t(pspdef_t *str)
if (saveg_compat > saveg_mbf)
{
// [Woof!]: fixed_t sx2;
str->sx2 = saveg_read32();
str->sx2 = str->oldsx2 = saveg_read32();

// [Woof!]: fixed_t sy2;
str->sy2 = saveg_read32();
str->sy2 = str->oldsy2 = saveg_read32();
}
else
{
Expand Down

0 comments on commit 7064a8e

Please sign in to comment.