diff options
author | mageven <62494521+mageven@users.noreply.github.com> | 2020-08-07 19:00:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 15:30:06 +0200 |
commit | e19193e073675158980393e8dc6b54dfe2a47c41 (patch) | |
tree | ba3ebed0732db3a3c7eba35a34f33e073d0bead8 | |
parent | 157ad3f54f6f8b16f9bf4004d3dc954197eaf66a (diff) |
Rename DebugLevel Performance to Slowdowns (#1450)
-rw-r--r-- | Ryujinx.Common/Configuration/GraphicsDebugLevel.cs | 2 | ||||
-rw-r--r-- | Ryujinx.Graphics.OpenGL/Debugger.cs | 2 | ||||
-rw-r--r-- | Ryujinx/Ui/SettingsWindow.glade | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs index 1bef4a7e..556af689 100644 --- a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs +++ b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs @@ -4,7 +4,7 @@ namespace Ryujinx.Common.Configuration { None, Error, - Performance, + Slowdowns, All } } diff --git a/Ryujinx.Graphics.OpenGL/Debugger.cs b/Ryujinx.Graphics.OpenGL/Debugger.cs index 974e5ead..9f67cfc6 100644 --- a/Ryujinx.Graphics.OpenGL/Debugger.cs +++ b/Ryujinx.Graphics.OpenGL/Debugger.cs @@ -32,7 +32,7 @@ namespace Ryujinx.Graphics.OpenGL { GL.DebugMessageControl(DebugSourceControl.DontCare, DebugTypeControl.DebugTypeError, DebugSeverityControl.DontCare, 0, (int[])null, true); } - else if (logLevel == GraphicsDebugLevel.Performance) + else if (logLevel == GraphicsDebugLevel.Slowdowns) { GL.DebugMessageControl(DebugSourceControl.DontCare, DebugTypeControl.DebugTypeError, DebugSeverityControl.DontCare, 0, (int[])null, true); GL.DebugMessageControl(DebugSourceControl.DontCare, DebugTypeControl.DebugTypePerformance, DebugSeverityControl.DontCare, 0, (int[])null, true); diff --git a/Ryujinx/Ui/SettingsWindow.glade b/Ryujinx/Ui/SettingsWindow.glade index 33ea05b7..953cdb8b 100644 --- a/Ryujinx/Ui/SettingsWindow.glade +++ b/Ryujinx/Ui/SettingsWindow.glade @@ -2185,7 +2185,7 @@ <property name="halign">start</property> <property name="margin_bottom">5</property> <property name="tooltip_text" translatable="yes">Use with care</property> - <property name="label" translatable="yes">Developer Options</property> + <property name="label" translatable="yes">Developer Options (WARNING: Will reduce performance)</property> <attributes> <attribute name="weight" value="bold"/> </attributes> @@ -2231,7 +2231,7 @@ <object class="GtkLabel"> <property name="visible">True</property> <property name="can_focus">False</property> - <property name="tooltip_text" translatable="yes">Requires appropriate log levels enabled. Not persistent across restarts.</property> + <property name="tooltip_text" translatable="yes">Requires appropriate log levels enabled.</property> <property name="label" translatable="yes">OpenGL Log Level</property> </object> <packing> @@ -2245,7 +2245,7 @@ <object class="GtkComboBoxText" id="_graphicsDebugLevel"> <property name="visible">True</property> <property name="can_focus">False</property> - <property name="tooltip_text" translatable="yes">Requires appropriate log levels enabled. Not persistent across restarts.</property> + <property name="tooltip_text" translatable="yes">Requires appropriate log levels enabled.</property> <property name="margin_left">5</property> </object> <packing> |