Просмотр исходного кода

misc: this is C# XMLdocs not Javadocs

Evan Husted 1 год назад
Родитель
Сommit
b5999583d6

+ 3 - 3
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
     }
 }

+ 3 - 3
src/Ryujinx.HLE/HLEConfiguration.cs

@@ -189,9 +189,9 @@ namespace Ryujinx.HLE
         /// </summary>
         public Action RefreshInputConfig { internal get; set; }
         
-        /**
-         * The desired hacky workarounds.
-         */
+        /// <summary>
+        ///     The desired hacky workarounds.
+        /// </summary>
         public DirtyHacks Hacks { internal get; set; }
 
         public HLEConfiguration(VirtualFileSystem virtualFileSystem,

+ 6 - 6
src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs

@@ -430,14 +430,14 @@ namespace Ryujinx.UI.Common.Configuration
         /// </summary>
         public bool UseHypervisor { get; set; }
         
-        /**
-         * Show toggles for dirty hacks in the UI.
-         */
+        /// <summary>
+        ///     Show toggles for dirty hacks in the UI.
+        /// </summary>
         public bool ShowDirtyHacks { get; set; }
         
-        /**
-          * The packed value of the enabled dirty hacks.
-          */
+        /// <summary>
+        ///     The packed value of the enabled dirty hacks.
+        /// </summary>
         public int EnabledDirtyHacks { get; set; }
         
         /// <summary>

+ 3 - 3
src/Ryujinx.UI.Common/Configuration/ConfigurationState.Model.cs

@@ -696,9 +696,9 @@ namespace Ryujinx.UI.Common.Configuration
         /// </summary>
         public MultiplayerSection Multiplayer { get; private set; }
         
-        /**
-         * The Dirty Hacks section
-         */
+        /// <summary>
+        ///     The Dirty Hacks section
+        /// </summary>
         public HacksSection Hacks { get; private set; }
 
         /// <summary>