From 5d891e0683928ea341c742f54cf40e54e04f1bd8 Mon Sep 17 00:00:00 2001 From: SuuperW Date: Fri, 20 Jun 2025 03:21:10 -0500 Subject: [PATCH] zstd compress text files, since zstd compressed files are now properly marked and accessible --- src/BizHawk.Client.Common/savestates/ZipStateSaver.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/savestates/ZipStateSaver.cs b/src/BizHawk.Client.Common/savestates/ZipStateSaver.cs index d243b4b9e1..19e6dde378 100644 --- a/src/BizHawk.Client.Common/savestates/ZipStateSaver.cs +++ b/src/BizHawk.Client.Common/savestates/ZipStateSaver.cs @@ -55,13 +55,12 @@ namespace BizHawk.Client.Common public void PutLump(BinaryStateLump lump, Action callback) { - // don't zstd compress text, as it's annoying for users PutLump(lump, s => { TextWriter tw = new StreamWriter(s); callback(tw); tw.Flush(); - }, false); + }); } public void Dispose()