From b5999583d68e13861515dd1494d0f84b870f8693 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 28 Dec 2024 22:08:37 -0600 Subject: [PATCH] misc: this is C# XMLdocs not Javadocs --- src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs | 6 +++--- src/Ryujinx.HLE/HLEConfiguration.cs | 6 +++--- .../Configuration/ConfigurationFileFormat.cs | 12 ++++++------ .../Configuration/ConfigurationState.Model.cs | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) 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; } ///