Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
fixed unused parameters in TakeSnapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyVignelles committed Jun 19, 2019
1 parent b9df299 commit 29dfebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vlc.DotNet.Forms/VlcControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public bool TakeSnapshot(string fileName)
/// <param name="height">The height of the snapshot (0 means auto)</param>
public bool TakeSnapshot(string fileName, uint width, uint height)
{
return this.TakeSnapshot(new FileInfo(fileName), 0, 0);
return this.TakeSnapshot(new FileInfo(fileName), width, height);
}


Expand Down

0 comments on commit 29dfebd

Please sign in to comment.