Skip to content

Commit

Permalink
fix(SaveGame): SAVEDAT format problems
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Jan 21, 2024
1 parent 3b9e108 commit 73eb727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SaveGame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ namespace zenkit {

{
auto w = Write::to(path / "SAVEDAT.SAV");
auto ar = WriteArchive::to_save(w.get(), ArchiveFormat::BINARY);
auto ar = WriteArchive::to_save(w.get(), ArchiveFormat::ASCII);

this->state.save(*ar, _m_version);
ar->write_header();
Expand Down

0 comments on commit 73eb727

Please sign in to comment.