From 8ae01f2f42358776b5d1a3c85f5229da5c8aa76e Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 19 Mar 2020 15:15:39 +1000 Subject: [PATCH] Fix tuple item names in return type --- BizHawk.Emulation.Common/Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index da3ac5e07d..57f39b20b2 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -247,7 +247,7 @@ namespace BizHawk.Emulation.Common return core.ServiceProvider.GetService(); } - public static (int x, int y) ScreenLogicalOffsets(this IEmulator core) + public static (int X, int Y) ScreenLogicalOffsets(this IEmulator core) { if (core != null && core.ServiceProvider.HasService()) {