Merge pull request #1205 from Vilsol/master
Resize unattended video if zoom factor >1
This commit is contained in:
commit
795fb0b887
|
@ -3160,6 +3160,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
aw = new AudioStretcher(aw);
|
||||
}
|
||||
|
||||
if (unattended && Global.Config.TargetZoomFactor > 1)
|
||||
{
|
||||
_avwriterResizew = Global.Config.TargetZoomFactor * _currentVideoProvider.BufferWidth;
|
||||
_avwriterResizeh = Global.Config.TargetZoomFactor * _currentVideoProvider.BufferHeight;
|
||||
}
|
||||
|
||||
aw.SetMovieParameters(Emulator.VsyncNumerator(), Emulator.VsyncDenominator());
|
||||
if (_avwriterResizew > 0 && _avwriterResizeh > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue