Improve PC and game details dialogs

This commit is contained in:
Cameron Gutman
2020-06-11 20:36:59 -07:00
parent d704cb0b50
commit 1149002e0c
3 changed files with 11 additions and 3 deletions
@@ -58,4 +58,13 @@ public class NvApp {
public boolean isInitialized() {
return this.initialized;
}
@Override
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("ID: ").append(appId).append("\n");
return str.toString();
}
}