mirror of
https://github.com/Orbmu2k/nvidiaProfileInspector.git
synced 2026-04-19 05:37:32 -04:00
Fix game title cut-offs in setting values
This commit is contained in:
@@ -209,7 +209,7 @@ namespace nvidiaProfileInspector.Common
|
||||
if (match != null)
|
||||
{
|
||||
var scName = sc.ValueName ?? "";
|
||||
var parenIdx = scName.LastIndexOf(" (");
|
||||
var parenIdx = scName.IndexOf(" (");
|
||||
if (parenIdx >= 0)
|
||||
match.ValueName = match.ValueName + scName.Substring(parenIdx);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user