Added a really basic toString function to the TMD class

This commit is contained in:
Maschell 2018-12-06 15:34:12 +01:00
parent b016295e9f
commit 4c121ed959

View File

@ -253,6 +253,10 @@ public final class TMD {
}
System.out.println("Total size: " + totalSize);
@Override
public String toString() {
return String.format("TMD for %016X titleversion %d content count: %d version %d system version %016X", titleID, titleVersion, contentCount, version,
systemVersion);
}
@Data