Add per platform game counts to the library (#164)

This commit is contained in:
Michael Green
2023-10-17 06:49:26 +11:00
committed by GitHub
parent 7c504ba8fd
commit ffc8be3c12
4 changed files with 94 additions and 9 deletions

View File

@@ -222,7 +222,7 @@
var legendLabel = document.createElement('div');
legendLabel.className = 'legend_label';
legendLabel.innerHTML = LibraryStatistics[i].platform + '<br />' + formatBytes(LibraryStatistics[i].totalSize);
legendLabel.innerHTML = LibraryStatistics[i].platform + '<br />' + formatBytes(LibraryStatistics[i].totalSize) + '<br />Images: ' + LibraryStatistics[i].romCount;
legend.appendChild(legendColour);
legend.appendChild(legendLabel);