Don't compress state/branch screenshots (resolves #3734)
This commit is contained in:
parent
5d891e0683
commit
e0222f13e3
|
@ -156,13 +156,13 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
var vp = new BitmapBufferVideoProvider(b.OSDFrameBuffer);
|
||||
QuickBmpFile.Save(vp, s, b.OSDFrameBuffer.Width, b.OSDFrameBuffer.Height);
|
||||
});
|
||||
}, zstdCompress: false);
|
||||
|
||||
bs.PutLump(ncoreframebuffer, s =>
|
||||
{
|
||||
var vp = new BitmapBufferVideoProvider(b.CoreFrameBuffer);
|
||||
QuickBmpFile.Save(vp, s, b.CoreFrameBuffer.Width, b.CoreFrameBuffer.Height);
|
||||
});
|
||||
}, zstdCompress: false);
|
||||
|
||||
bs.PutLump(nmarkers, tw => tw.WriteLine(b.Markers.ToString()));
|
||||
|
||||
|
|
|
@ -82,7 +82,10 @@ namespace BizHawk.Client.Common
|
|||
|
||||
using (new SimpleTime("Save Framebuffer"))
|
||||
{
|
||||
bs.PutLump(BinaryStateLump.Framebuffer, s => QuickBmpFile.Save(_videoProvider, s, outWidth, outHeight));
|
||||
bs.PutLump(
|
||||
BinaryStateLump.Framebuffer,
|
||||
s => QuickBmpFile.Save(_videoProvider, s, outWidth, outHeight),
|
||||
zstdCompress: false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue