From 1306884895a7a0eef410cdf9d64ef07ae26656b0 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 18 Feb 2019 21:10:02 -0300 Subject: [PATCH] Use convertedScalingMode --- Ryujinx.HLE/HOS/Services/Vi/IApplicationDisplayService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/Vi/IApplicationDisplayService.cs b/Ryujinx.HLE/HOS/Services/Vi/IApplicationDisplayService.cs index 7658802f7e..48cf328806 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/IApplicationDisplayService.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/IApplicationDisplayService.cs @@ -197,7 +197,7 @@ namespace Ryujinx.HLE.HOS.Services.Vi return MakeError(ErrorModule.Vi, 6); } - context.ResponseData.Write((ulong)ConvertScalingMode(scalingMode)); + context.ResponseData.Write((ulong)convertedScalingMode); return 0; }