Adjust app details text for new HDR behavior

This commit is contained in:
Cameron Gutman
2022-06-09 20:25:37 -05:00
parent a73eab5e92
commit 982b36cf98

View File

@@ -63,7 +63,7 @@ public class NvApp {
public String toString() {
StringBuilder str = new StringBuilder();
str.append("Name: ").append(appName).append("\n");
str.append("HDR: ").append(hdrSupported ? "Yes" : "No").append("\n");
str.append("HDR Supported: ").append(hdrSupported ? "Yes" : "Unknown").append("\n");
str.append("ID: ").append(appId).append("\n");
return str.toString();
}