diff options
Diffstat (limited to 'Ryujinx/Ui/Windows/SettingsWindow.cs')
-rw-r--r-- | Ryujinx/Ui/Windows/SettingsWindow.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ui/Windows/SettingsWindow.cs b/Ryujinx/Ui/Windows/SettingsWindow.cs index 0a188fb7..8434d652 100644 --- a/Ryujinx/Ui/Windows/SettingsWindow.cs +++ b/Ryujinx/Ui/Windows/SettingsWindow.cs @@ -181,7 +181,7 @@ namespace Ryujinx.Ui.Windows _fsAccessLogToggle.Click(); } - foreach (GraphicsDebugLevel level in Enum.GetValues(typeof(GraphicsDebugLevel))) + foreach (GraphicsDebugLevel level in Enum.GetValues<GraphicsDebugLevel>()) { _graphicsDebugLevel.Append(level.ToString(), level.ToString()); } |