use nearest neighbor filtering when resizing an avi dump without padding, instead of bilinear.
This commit is contained in:
parent
50c4414a93
commit
16896dc858
|
@ -3063,6 +3063,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else
|
||||
{
|
||||
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor;
|
||||
g.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.Half;
|
||||
g.DrawImage(bmpin, new Rectangle(0, 0, bmpout.Width, bmpout.Height));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue