mirror of https://github.com/n64decomp/mk64.git
Update progress.py (#379)
This commit is contained in:
parent
6e3f6aee63
commit
0dd7133e86
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Reference in New Issue