Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Remove usages of C# 7.1 features
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewSachin committed May 1, 2019
1 parent a78d58c commit 0d601fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Captura.Windows/DesktopDuplication/DuplCapture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void Init()
}
}

public bool Get(Texture2D Texture, DxMousePointer DxMousePointer, Point TargetPosition = default)
public bool Get(Texture2D Texture, DxMousePointer DxMousePointer, Point TargetPosition = default(Point))
{
lock (_syncLock)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void Update(Texture2D DesktopTexture, OutputDuplicateFrameInformation Fra
_pointerShape?.Update(DesktopTexture, _pointerPosition);
}

public void Draw(Direct2DEditor Editor, Point Location = default)
public void Draw(Direct2DEditor Editor, Point Location = default(Point))
{
if (!_pointerPosition.Visible)
return;
Expand Down

0 comments on commit 0d601fe

Please sign in to comment.