Fix tuple item names in return type

This commit is contained in:
YoshiRulz 2020-03-19 15:15:39 +10:00
parent 89abab7a52
commit 8ae01f2f42
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ namespace BizHawk.Emulation.Common
return core.ServiceProvider.GetService<IBoardInfo>(); return core.ServiceProvider.GetService<IBoardInfo>();
} }
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<IVideoLogicalOffsets>()) if (core != null && core.ServiceProvider.HasService<IVideoLogicalOffsets>())
{ {