diff --git a/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs index a43c83580..fdf0aff9c 100644 --- a/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs +++ b/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs @@ -2,8 +2,8 @@ namespace Ryujinx.Graphics.Nvdec.Vp9 { internal enum BitDepth { - Bits8 = 8, /**< 8 bits */ - Bits10 = 10, /**< 10 bits */ - Bits12 = 12, /**< 12 bits */ + Bits8 = 8, // < 8 bits + Bits10 = 10, // < 10 bits + Bits12 = 12, // < 12 bits } } diff --git a/src/Ryujinx.HLE/HLEConfiguration.cs b/src/Ryujinx.HLE/HLEConfiguration.cs index 3bfab0be4..b44a09b22 100644 --- a/src/Ryujinx.HLE/HLEConfiguration.cs +++ b/src/Ryujinx.HLE/HLEConfiguration.cs @@ -189,9 +189,9 @@ namespace Ryujinx.HLE /// public Action RefreshInputConfig { internal get; set; } - /** - * The desired hacky workarounds. - */ + /// + /// The desired hacky workarounds. + /// public DirtyHacks Hacks { internal get; set; } public HLEConfiguration(VirtualFileSystem virtualFileSystem, diff --git a/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs b/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs index f5ce265ee..8b123be01 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs @@ -430,14 +430,14 @@ namespace Ryujinx.UI.Common.Configuration /// public bool UseHypervisor { get; set; } - /** - * Show toggles for dirty hacks in the UI. - */ + /// + /// Show toggles for dirty hacks in the UI. + /// public bool ShowDirtyHacks { get; set; } - /** - * The packed value of the enabled dirty hacks. - */ + /// + /// The packed value of the enabled dirty hacks. + /// public int EnabledDirtyHacks { get; set; } /// diff --git a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.Model.cs b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.Model.cs index c07ff3d71..2ae56d50a 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.Model.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.Model.cs @@ -696,9 +696,9 @@ namespace Ryujinx.UI.Common.Configuration /// public MultiplayerSection Multiplayer { get; private set; } - /** - * The Dirty Hacks section - */ + /// + /// The Dirty Hacks section + /// public HacksSection Hacks { get; private set; } ///