diff --git a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs
index 79388958a..272bf7f72 100644
--- a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs
+++ b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs
@@ -111,6 +111,18 @@ namespace Ryujinx.Ava.Utilities.AppLibrary
return data;
}
+ ///
+ /// Gets a name for an available content file based on the Application ID ''.
+ ///
+ /// For Applications, this returns the localized name of the app found in the file.
+ /// For DLCs, this returns the name of the file that contains the DLC, minus the file extension.
+ ///
+ /// The Application ID to search for.
+ ///
+ /// If the provided Application ID does not have a corresponding Application OR DLC file,
+ /// formatted as hexadecimal is returned.
+ ///
+ /// A formatted Application name, or as hexadecimal if none is found.
public string GetNameForApplicationId(ulong id)
{
DynamicData.Kernel.Optional appData = Applications.Lookup(id);