Fix the rupee count in progress.py (#1034)

* Fix the rupee count in progress.py

* Use python integer division

Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>

Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>
This commit is contained in:
Roman971
2021-11-28 12:06:27 +01:00
committed by GitHub
parent d241bfb7ec
commit f68ac1d193
+1 -1
View File
@@ -104,7 +104,7 @@ codePct = 100 * code / codeSize
bootPct = 100 * boot / bootSize
ovlPct = 100 * ovl / ovlSize
bytesPerHeartPiece = total / 80
bytesPerHeartPiece = total // 80
if args.format == 'csv':
version = 1