aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx/Ui/Windows/ControllerWindow.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx/Ui/Windows/ControllerWindow.cs b/Ryujinx/Ui/Windows/ControllerWindow.cs
index 655f1afb..c57a62c7 100644
--- a/Ryujinx/Ui/Windows/ControllerWindow.cs
+++ b/Ryujinx/Ui/Windows/ControllerWindow.cs
@@ -231,12 +231,12 @@ namespace Ryujinx.Ui.Windows
private static string GetShrinkedGamepadName(string str)
{
- const string ShrinkChars = "..";
- const int MaxSize = 52;
+ const string ShrinkChars = "...";
+ const int MaxSize = 50;
- if (str.Length > MaxSize - ShrinkChars.Length)
+ if (str.Length > MaxSize)
{
- return str.Substring(0, MaxSize) + ShrinkChars;
+ return str.Substring(0, MaxSize - ShrinkChars.Length) + ShrinkChars;
}
return str;