Reimplement TransformPointX/Y using TransformPoint, but deprecate them
This commit is contained in:
parent
377e4498d7
commit
6edcd00431
|
@ -674,6 +674,12 @@ namespace BizHawk.Client.ApiHawk
|
||||||
return point;
|
return point;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Obsolete]
|
||||||
|
public static int TransformPointX(int x) => TransformPoint(new Point(x, 0)).X;
|
||||||
|
|
||||||
|
[Obsolete]
|
||||||
|
public static int TransformPointY(int y) => TransformPoint(new Point(0, y)).Y;
|
||||||
|
|
||||||
public static void Unpause()
|
public static void Unpause()
|
||||||
{
|
{
|
||||||
InvokeMainFormMethod("UnpauseEmulator");
|
InvokeMainFormMethod("UnpauseEmulator");
|
||||||
|
|
Loading…
Reference in New Issue