Update progress.py (#379)

This commit is contained in:
MegaMech
2023-08-22 19:31:27 -06:00
committed by GitHub
parent 6e3f6aee63
commit 0dd7133e86
+1 -1
View File
@@ -279,7 +279,7 @@ if args.format == 'shield-json':
elif args.format == 'totalBadge':
print(str(round(((mk64Code_size - text_size) / mk64Code_size) * 100, 2))+"%")
elif args.format == 'gameBadge':
print(str(round(srcPct, 2))+"%")
print(str(round(((mk64Code_size - text_size) / (mk64Code_size - audio_size)) * 100, 2))+"%")
elif args.format == 'audioBadge':
print(str(round(audioPct, 2))+"%")
elif args.format == 'bytesToDecompile':