From 52feb6da50f32bfcd9d44f9831b20cadcde5bc74 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 18 Feb 2019 15:15:15 -0300 Subject: [PATCH] Fix up the naming --- Ryujinx.HLE/HOS/Services/Vi/ScalingMode.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Vi/ScalingMode.cs b/Ryujinx.HLE/HOS/Services/Vi/ScalingMode.cs index 42e51c30aa..7b555b5999 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/ScalingMode.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/ScalingMode.cs @@ -1,6 +1,15 @@ namespace Ryujinx.HLE.HOS.Services.Vi { enum SrcScalingMode + { + None = 0, + Freeze = 1, + ScaleToWindow = 2, + ScaleAndCrop = 3, + PreserveAspectRatio = 4 + } + + enum DstScalingMode { Freeze = 0, ScaleToWindow = 1, @@ -8,13 +17,4 @@ None = 3, PreserveAspectRatio = 4 } - - enum DstScalingMode - { - ScaleToWindow = 0, - ScaleAndCrop = 1, - None = 2, - Freeze = 3, - PreserveAspectRatio = 4 - } }