rename TruncatedApplicationTitle

This commit is contained in:
GreemDev 2025-12-30 15:43:31 -06:00
parent 1910ab363a
commit 31cb0a6a13
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ namespace Ryujinx.Ava.UI.Renderer
if (RenderDoc.IsFrameCapturing) return false;
RenderDoc.StartFrameCapture(nint.Zero, WindowHandle);
RenderDoc.SetCaptureTitle(TitleHelper.TruncatedApplicationTitle(device.Processes.ActiveApplication, Program.Version));
RenderDoc.SetCaptureTitle(TitleHelper.FormatRenderDocCaptureTitle(device.Processes.ActiveApplication, Program.Version));
return true;
}

View file

@ -24,7 +24,7 @@ namespace Ryujinx.Ava.Utilities
: appTitle;
}
public static string TruncatedApplicationTitle(ProcessResult activeProcess, string applicationVersion)
public static string FormatRenderDocCaptureTitle(ProcessResult activeProcess, string applicationVersion)
{
if (activeProcess == null)
return string.Empty;