Tastudio branches - save the OSD frame buffer to disk as the size that it is
This commit is contained in:
parent
1a5814b7a8
commit
819a13a6f0
|
@ -45,7 +45,7 @@ namespace BizHawk.Client.Common
|
|||
bs.PutLump(nframebuffer, delegate(Stream s)
|
||||
{
|
||||
var vp = new BitmapBufferVideoProvider(b.OSDFrameBuffer);
|
||||
QuickBmpFile.Save(vp, s, 160, 120); // todo: choose size more smarterly
|
||||
QuickBmpFile.Save(vp, s, b.OSDFrameBuffer.Width, b.OSDFrameBuffer.Height); // todo: choose size more smarterly
|
||||
});
|
||||
bs.PutLump(nlaglog, delegate(BinaryWriter bw)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue